pub enum Continuation {
Default,
File(String),
}Variants§
Trait Implementations§
Source§impl Clone for Continuation
impl Clone for Continuation
Source§fn clone(&self) -> Continuation
fn clone(&self) -> Continuation
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 Continuation
impl Debug for Continuation
Source§impl Default for Continuation
impl Default for Continuation
Source§fn default() -> Continuation
fn default() -> Continuation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Continuation
impl<'de> Deserialize<'de> for Continuation
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 Display for Continuation
impl Display for Continuation
Source§impl From<Continuation> for ContinueReuse
impl From<Continuation> for ContinueReuse
Source§fn from(value: Continuation) -> Self
fn from(value: Continuation) -> Self
Converts to this type from the input type.
Source§impl Hash for Continuation
impl Hash for Continuation
Source§impl KeywordDisplay for Continuation
impl KeywordDisplay for Continuation
Source§impl Ord for Continuation
impl Ord for Continuation
Source§fn cmp(&self, other: &Continuation) -> Ordering
fn cmp(&self, other: &Continuation) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Continuation
impl PartialEq for Continuation
Source§impl PartialOrd for Continuation
impl PartialOrd for Continuation
Source§impl Serialize for Continuation
impl Serialize for Continuation
impl Eq for Continuation
impl StructuralPartialEq for Continuation
Auto Trait Implementations§
impl Freeze for Continuation
impl RefUnwindSafe for Continuation
impl Send for Continuation
impl Sync for Continuation
impl Unpin for Continuation
impl UnwindSafe for Continuation
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