Enum cm_rust::ConfigVectorValue
source · pub enum ConfigVectorValue {
BoolVector(Vec<bool>),
Uint8Vector(Vec<u8>),
Uint16Vector(Vec<u16>),
Uint32Vector(Vec<u32>),
Uint64Vector(Vec<u64>),
Int8Vector(Vec<i8>),
Int16Vector(Vec<i16>),
Int32Vector(Vec<i32>),
Int64Vector(Vec<i64>),
StringVector(Vec<String>),
}
Variants§
BoolVector(Vec<bool>)
Uint8Vector(Vec<u8>)
Uint16Vector(Vec<u16>)
Uint32Vector(Vec<u32>)
Uint64Vector(Vec<u64>)
Int8Vector(Vec<i8>)
Int16Vector(Vec<i16>)
Int32Vector(Vec<i32>)
Int64Vector(Vec<i64>)
StringVector(Vec<String>)
Trait Implementations§
source§impl Clone for ConfigVectorValue
impl Clone for ConfigVectorValue
source§fn clone(&self) -> ConfigVectorValue
fn clone(&self) -> ConfigVectorValue
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ConfigVectorValue
impl Debug for ConfigVectorValue
source§impl Display for ConfigVectorValue
impl Display for ConfigVectorValue
source§impl FidlIntoNative<ConfigVectorValue> for ConfigVectorValue
impl FidlIntoNative<ConfigVectorValue> for ConfigVectorValue
fn fidl_into_native(self) -> ConfigVectorValue
source§impl From<ConfigVectorValue> for ConfigValue
impl From<ConfigVectorValue> for ConfigValue
source§fn from(f: ConfigVectorValue) -> Self
fn from(f: ConfigVectorValue) -> Self
Converts to this type from the input type.
source§impl FromEnum<ConfigValue> for ConfigVectorValue
impl FromEnum<ConfigValue> for ConfigVectorValue
source§impl NativeIntoFidl<ConfigVectorValue> for ConfigVectorValue
impl NativeIntoFidl<ConfigVectorValue> for ConfigVectorValue
fn native_into_fidl(self) -> ConfigVectorValue
source§impl PartialEq for ConfigVectorValue
impl PartialEq for ConfigVectorValue
source§fn eq(&self, other: &ConfigVectorValue) -> bool
fn eq(&self, other: &ConfigVectorValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ConfigVectorValue
impl StructuralPartialEq for ConfigVectorValue
Auto Trait Implementations§
impl Freeze for ConfigVectorValue
impl RefUnwindSafe for ConfigVectorValue
impl Send for ConfigVectorValue
impl Sync for ConfigVectorValue
impl Unpin for ConfigVectorValue
impl UnwindSafe for ConfigVectorValue
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)