pub struct PlatzStatus<SN>{
pub status: Status<SN>,
pub primary_metric: Option<Metric>,
pub metrics: Option<Vec<Metric>>,
pub notices: Vec<Notice>,
}
Fields§
§status: Status<SN>
§primary_metric: Option<Metric>
§metrics: Option<Vec<Metric>>
§notices: Vec<Notice>
Trait Implementations§
Source§impl<SN> Clone for PlatzStatus<SN>
impl<SN> Clone for PlatzStatus<SN>
Source§fn clone(&self) -> PlatzStatus<SN>
fn clone(&self) -> PlatzStatus<SN>
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<SN> Debug for PlatzStatus<SN>
impl<SN> Debug for PlatzStatus<SN>
Auto Trait Implementations§
impl<SN> Freeze for PlatzStatus<SN>where
SN: Freeze,
impl<SN> RefUnwindSafe for PlatzStatus<SN>where
SN: RefUnwindSafe,
impl<SN> Send for PlatzStatus<SN>where
SN: Send,
impl<SN> Sync for PlatzStatus<SN>where
SN: Sync,
impl<SN> Unpin for PlatzStatus<SN>where
SN: Unpin,
impl<SN> UnwindSafe for PlatzStatus<SN>where
SN: UnwindSafe,
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