pub trait IRawValueListMethods: IRawValueList {
// Provided methods
fn get_capacity(self) -> i32 { ... }
fn ctor(self, capacity: impl Into<i32>) { ... }
fn get(self, index: impl Into<i32>) -> ValueType { ... }
fn set(self, index: impl Into<i32>) -> ValueType { ... }
fn add(self, value: impl Into<ValueType>) { ... }
fn clear(self) { ... }
}Provided Methods§
Sourcefn get_capacity(self) -> i32
fn get_capacity(self) -> i32
get_Capacity() overload
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§
impl<__T: IRawValueList> IRawValueListMethods for __T
Available on crate feature
app-rawvaluelist only.