pub struct FetchedStringArray {
pub value: Vec<String>,
pub alarm_severity: AlarmSeverity,
pub alarm_status: AlarmStatus,
pub alarm_message: String,
}Expand description
Fetched string array value with alarm information
Fields§
§value: Vec<String>§alarm_severity: AlarmSeverity§alarm_status: AlarmStatus§alarm_message: StringTrait Implementations§
Source§impl Clone for FetchedStringArray
impl Clone for FetchedStringArray
Source§fn clone(&self) -> FetchedStringArray
fn clone(&self) -> FetchedStringArray
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 FetchedStringArray
impl RefUnwindSafe for FetchedStringArray
impl Send for FetchedStringArray
impl Sync for FetchedStringArray
impl Unpin for FetchedStringArray
impl UnsafeUnpin for FetchedStringArray
impl UnwindSafe for FetchedStringArray
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