pub struct PauseResponse {
pub paused: bool,
pub pause_until: OffsetDateTime,
pub pause_remaining: Option<Duration>,
}
Available on crate feature
server_2_11
only.Fields§
§paused: bool
§pause_until: OffsetDateTime
§pause_remaining: Option<Duration>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PauseResponse
impl<'de> Deserialize<'de> for PauseResponse
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 PauseResponse
impl RefUnwindSafe for PauseResponse
impl Send for PauseResponse
impl Sync for PauseResponse
impl Unpin for PauseResponse
impl UnwindSafe for PauseResponse
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