pub struct TimeoutPolicy {
pub timeout_secs: u64,
pub action: TimeoutAction,
}Expand description
What happens when the human doesn’t respond in time.
Fields§
§timeout_secs: u64How long to wait before timeout action (in seconds).
action: TimeoutActionWhat to do on timeout.
Implementations§
Trait Implementations§
Source§impl Clone for TimeoutPolicy
impl Clone for TimeoutPolicy
Source§fn clone(&self) -> TimeoutPolicy
fn clone(&self) -> TimeoutPolicy
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 TimeoutPolicy
impl Debug for TimeoutPolicy
Source§impl Default for TimeoutPolicy
impl Default for TimeoutPolicy
Source§fn default() -> TimeoutPolicy
fn default() -> TimeoutPolicy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeoutPolicy
impl<'de> Deserialize<'de> for TimeoutPolicy
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TimeoutPolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TimeoutPolicy, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TimeoutPolicy
impl Serialize for TimeoutPolicy
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for TimeoutPolicy
impl RefUnwindSafe for TimeoutPolicy
impl Send for TimeoutPolicy
impl Sync for TimeoutPolicy
impl Unpin for TimeoutPolicy
impl UnsafeUnpin for TimeoutPolicy
impl UnwindSafe for TimeoutPolicy
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