pub struct TagAttributes {
pub name: String,
pub data_type: u16,
pub data_type_name: String,
pub dimensions: Vec<u32>,
pub permissions: TagPermissions,
pub scope: TagScope,
pub template_instance_id: Option<u32>,
pub size: u32,
}Expand description
Tag attributes from PLC
Fields§
§name: String§data_type: u16§data_type_name: String§dimensions: Vec<u32>§permissions: TagPermissions§scope: TagScope§template_instance_id: Option<u32>§size: u32Trait Implementations§
Source§impl Clone for TagAttributes
impl Clone for TagAttributes
Source§fn clone(&self) -> TagAttributes
fn clone(&self) -> TagAttributes
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 moreAuto Trait Implementations§
impl Freeze for TagAttributes
impl RefUnwindSafe for TagAttributes
impl Send for TagAttributes
impl Sync for TagAttributes
impl Unpin for TagAttributes
impl UnwindSafe for TagAttributes
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