pub struct EmergencyResumeResponse {
pub stopped: bool,
}Expand description
Wire response for POST /emergency-resume.
Fields§
§stopped: boolAlways false for a successful resume.
Trait Implementations§
Source§impl Clone for EmergencyResumeResponse
impl Clone for EmergencyResumeResponse
Source§fn clone(&self) -> EmergencyResumeResponse
fn clone(&self) -> EmergencyResumeResponse
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 Debug for EmergencyResumeResponse
impl Debug for EmergencyResumeResponse
Source§impl<'de> Deserialize<'de> for EmergencyResumeResponse
impl<'de> Deserialize<'de> for EmergencyResumeResponse
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
Auto Trait Implementations§
impl Freeze for EmergencyResumeResponse
impl RefUnwindSafe for EmergencyResumeResponse
impl Send for EmergencyResumeResponse
impl Sync for EmergencyResumeResponse
impl Unpin for EmergencyResumeResponse
impl UnsafeUnpin for EmergencyResumeResponse
impl UnwindSafe for EmergencyResumeResponse
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