#[repr(C)]pub struct UA_Variant {
pub type_: *const UA_DataType,
pub storageType: UA_VariantStorageType,
pub arrayLength: usize,
pub data: *mut c_void,
pub arrayDimensionsSize: usize,
pub arrayDimensions: *mut UA_UInt32,
}Fields§
§type_: *const UA_DataType§storageType: UA_VariantStorageType§arrayLength: usize§data: *mut c_void§arrayDimensionsSize: usize§arrayDimensions: *mut UA_UInt32Trait Implementations§
Source§impl Clone for UA_Variant
impl Clone for UA_Variant
Source§fn clone(&self) -> UA_Variant
fn clone(&self) -> UA_Variant
Returns a duplicate 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 UA_Variant
impl Debug for UA_Variant
impl Copy for UA_Variant
Auto Trait Implementations§
impl Freeze for UA_Variant
impl RefUnwindSafe for UA_Variant
impl !Send for UA_Variant
impl !Sync for UA_Variant
impl Unpin for UA_Variant
impl UnwindSafe for UA_Variant
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