pub struct WaitResolutionState {
pub kind: String,
pub resolution: Option<String>,
pub by: Option<String>,
pub comment: Option<String>,
pub event_id: Option<String>,
pub deadline_at: Option<u64>,
pub exceeded_at_ms: Option<u64>,
}Fields§
§kind: String§resolution: Option<String>§by: Option<String>§comment: Option<String>§event_id: Option<String>§deadline_at: Option<u64>§exceeded_at_ms: Option<u64>Trait Implementations§
Source§impl Clone for WaitResolutionState
impl Clone for WaitResolutionState
Source§fn clone(&self) -> WaitResolutionState
fn clone(&self) -> WaitResolutionState
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 WaitResolutionState
impl Debug for WaitResolutionState
Source§impl<'de> Deserialize<'de> for WaitResolutionState
impl<'de> Deserialize<'de> for WaitResolutionState
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
impl Eq for WaitResolutionState
Source§impl PartialEq for WaitResolutionState
impl PartialEq for WaitResolutionState
Source§fn eq(&self, other: &WaitResolutionState) -> bool
fn eq(&self, other: &WaitResolutionState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WaitResolutionState
impl Serialize for WaitResolutionState
impl StructuralPartialEq for WaitResolutionState
Auto Trait Implementations§
impl Freeze for WaitResolutionState
impl RefUnwindSafe for WaitResolutionState
impl Send for WaitResolutionState
impl Sync for WaitResolutionState
impl Unpin for WaitResolutionState
impl UnsafeUnpin for WaitResolutionState
impl UnwindSafe for WaitResolutionState
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