#[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 Debug for UA_Variant
impl Debug 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