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§
fn with_capacity(capacity: i32) -> Self
fn get(self, index: i32) -> T
fn iter(self) -> List_1Iter<T> ⓘ
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.