Skip to main content

IRawValueListMethods

Trait IRawValueListMethods 

Source
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§

Source

fn get_capacity(self) -> i32

get_Capacity() overload

Source

fn ctor(self, capacity: impl Into<i32>)

.ctor(i32) overload

Source

fn get(self, index: impl Into<i32>) -> ValueType

Get(i32) overload

Source

fn set(self, index: impl Into<i32>) -> ValueType

Set(i32, *mutcrate::system::valuetype::ValueType) overload

Source

fn add(self, value: impl Into<ValueType>)

Add(crate::system::valuetype::ValueType) overload

Source

fn clear(self)

Clear() 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§

Source§

impl<__T: IRawValueList> IRawValueListMethods for __T

Available on crate feature app-rawvaluelist only.