pub struct WaitSnapshot {
pub wait_id: String,
pub status: WaitStatus,
pub resume_at: DateTime<Utc>,
}Fields§
§wait_id: String§status: WaitStatus§resume_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for WaitSnapshot
impl Clone for WaitSnapshot
Source§fn clone(&self) -> WaitSnapshot
fn clone(&self) -> WaitSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WaitSnapshot
impl Debug for WaitSnapshot
Source§impl<'de> Deserialize<'de> for WaitSnapshot
impl<'de> Deserialize<'de> for WaitSnapshot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WaitSnapshot
impl PartialEq for WaitSnapshot
Source§fn eq(&self, other: &WaitSnapshot) -> bool
fn eq(&self, other: &WaitSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WaitSnapshot
impl Serialize for WaitSnapshot
impl StructuralPartialEq for WaitSnapshot
Auto Trait Implementations§
impl Freeze for WaitSnapshot
impl RefUnwindSafe for WaitSnapshot
impl Send for WaitSnapshot
impl Sync for WaitSnapshot
impl Unpin for WaitSnapshot
impl UnsafeUnpin for WaitSnapshot
impl UnwindSafe for WaitSnapshot
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