#[repr(C)]pub struct UA_VariableAttributes {Show 14 fields
pub specifiedAttributes: UA_UInt32,
pub displayName: UA_LocalizedText,
pub description: UA_LocalizedText,
pub writeMask: UA_UInt32,
pub userWriteMask: UA_UInt32,
pub value: UA_Variant,
pub dataType: UA_NodeId,
pub valueRank: UA_Int32,
pub arrayDimensionsSize: usize,
pub arrayDimensions: *mut UA_UInt32,
pub accessLevel: UA_Byte,
pub userAccessLevel: UA_Byte,
pub minimumSamplingInterval: UA_Double,
pub historizing: UA_Boolean,
}Fields§
§specifiedAttributes: UA_UInt32§displayName: UA_LocalizedText§description: UA_LocalizedText§writeMask: UA_UInt32§userWriteMask: UA_UInt32§value: UA_Variant§dataType: UA_NodeId§valueRank: UA_Int32§arrayDimensionsSize: usize§arrayDimensions: *mut UA_UInt32§accessLevel: UA_Byte§userAccessLevel: UA_Byte§minimumSamplingInterval: UA_Double§historizing: UA_BooleanTrait Implementations§
Source§impl Clone for UA_VariableAttributes
impl Clone for UA_VariableAttributes
Source§fn clone(&self) -> UA_VariableAttributes
fn clone(&self) -> UA_VariableAttributes
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 moreimpl Copy for UA_VariableAttributes
Auto Trait Implementations§
impl Freeze for UA_VariableAttributes
impl RefUnwindSafe for UA_VariableAttributes
impl !Send for UA_VariableAttributes
impl !Sync for UA_VariableAttributes
impl Unpin for UA_VariableAttributes
impl UnwindSafe for UA_VariableAttributes
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