pub struct SmlListEntry {
pub object_name: Vec<u8>,
pub status: Option<usize>,
pub value_time: Vec<u8>,
pub unit: Option<usize>,
pub scaler: Option<isize>,
pub value: AnyValue,
}
Fields§
§object_name: Vec<u8>
§status: Option<usize>
§value_time: Vec<u8>
§unit: Option<usize>
§scaler: Option<isize>
§value: AnyValue
Trait Implementations§
Source§impl Clone for SmlListEntry
impl Clone for SmlListEntry
Source§fn clone(&self) -> SmlListEntry
fn clone(&self) -> SmlListEntry
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 SmlListEntry
impl Debug for SmlListEntry
Source§impl PartialEq for SmlListEntry
impl PartialEq for SmlListEntry
impl StructuralPartialEq for SmlListEntry
Auto Trait Implementations§
impl Freeze for SmlListEntry
impl RefUnwindSafe for SmlListEntry
impl Send for SmlListEntry
impl Sync for SmlListEntry
impl Unpin for SmlListEntry
impl UnwindSafe for SmlListEntry
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