pub enum DelayOutput {
Random(usize),
TimeUp,
}
Variants§
Trait Implementations§
Source§impl Clone for DelayOutput
impl Clone for DelayOutput
Source§fn clone(&self) -> DelayOutput
fn clone(&self) -> DelayOutput
Returns a copy 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 DelayOutput
impl Debug for DelayOutput
Source§impl<'de> Deserialize<'de> for DelayOutput
impl<'de> Deserialize<'de> for DelayOutput
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 DelayOutput
impl PartialEq for DelayOutput
Source§impl Serialize for DelayOutput
impl Serialize for DelayOutput
impl Eq for DelayOutput
impl StructuralPartialEq for DelayOutput
Auto Trait Implementations§
impl Freeze for DelayOutput
impl RefUnwindSafe for DelayOutput
impl Send for DelayOutput
impl Sync for DelayOutput
impl Unpin for DelayOutput
impl UnwindSafe for DelayOutput
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