pub enum ReasonUnknown {
Memout,
Incomplete,
SExpr(SExpr),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReasonUnknown
impl Clone for ReasonUnknown
Source§fn clone(&self) -> ReasonUnknown
fn clone(&self) -> ReasonUnknown
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 ReasonUnknown
impl Debug for ReasonUnknown
Source§impl<'de> Deserialize<'de> for ReasonUnknown
impl<'de> Deserialize<'de> for ReasonUnknown
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 ReasonUnknown
impl Display for ReasonUnknown
Source§impl Hash for ReasonUnknown
impl Hash for ReasonUnknown
Source§impl PartialEq for ReasonUnknown
impl PartialEq for ReasonUnknown
Source§impl Serialize for ReasonUnknown
impl Serialize for ReasonUnknown
impl Eq for ReasonUnknown
impl StructuralPartialEq for ReasonUnknown
Auto Trait Implementations§
impl Freeze for ReasonUnknown
impl RefUnwindSafe for ReasonUnknown
impl Send for ReasonUnknown
impl Sync for ReasonUnknown
impl Unpin for ReasonUnknown
impl UnwindSafe for ReasonUnknown
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more