pub enum ContinueReuse {
Continuation(Continuation),
Reuse(Reuse),
}Variants§
Continuation(Continuation)
Reuse(Reuse)
Trait Implementations§
Source§impl Clone for ContinueReuse
impl Clone for ContinueReuse
Source§fn clone(&self) -> ContinueReuse
fn clone(&self) -> ContinueReuse
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 ContinueReuse
impl Debug for ContinueReuse
Source§impl Default for ContinueReuse
impl Default for ContinueReuse
Source§impl<'de> Deserialize<'de> for ContinueReuse
impl<'de> Deserialize<'de> for ContinueReuse
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 ContinueReuse
impl Display for ContinueReuse
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 From<Reuse> for ContinueReuse
impl From<Reuse> for ContinueReuse
Source§impl Hash for ContinueReuse
impl Hash for ContinueReuse
Source§impl KeywordDisplay for ContinueReuse
impl KeywordDisplay for ContinueReuse
Source§impl Ord for ContinueReuse
impl Ord for ContinueReuse
Source§fn cmp(&self, other: &ContinueReuse) -> Ordering
fn cmp(&self, other: &ContinueReuse) -> 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 ContinueReuse
impl PartialEq for ContinueReuse
Source§impl PartialOrd for ContinueReuse
impl PartialOrd for ContinueReuse
Source§impl Serialize for ContinueReuse
impl Serialize for ContinueReuse
impl Eq for ContinueReuse
impl StructuralPartialEq for ContinueReuse
Auto Trait Implementations§
impl Freeze for ContinueReuse
impl RefUnwindSafe for ContinueReuse
impl Send for ContinueReuse
impl Sync for ContinueReuse
impl Unpin for ContinueReuse
impl UnwindSafe for ContinueReuse
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