Skip to main content

List_1Ext

Trait List_1Ext 

Source
pub trait List_1Ext<T: Copy + ClassIdentity> {
    // Required methods
    fn with_capacity(capacity: i32) -> Self;
    fn get(self, index: i32) -> T;
    fn iter(self) -> List_1Iter<T> ;
    fn count(self) -> i32;
}

Required Methods§

Source

fn with_capacity(capacity: i32) -> Self

Source

fn get(self, index: i32) -> T

Source

fn iter(self) -> List_1Iter<T>

Source

fn count(self) -> i32

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Copy + ClassIdentity> List_1Ext<T> for List_1<T>