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