pub enum Decomposable {
None,
One,
Many,
}
Expand description
Decomposable
JSON schema
{
"type": "string",
"enum": [
"NONE",
"ONE",
"MANY"
]
}
Variants§
Trait Implementations§
Source§impl Clone for Decomposable
impl Clone for Decomposable
Source§fn clone(&self) -> Decomposable
fn clone(&self) -> Decomposable
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 Decomposable
impl Debug for Decomposable
Source§impl<'de> Deserialize<'de> for Decomposable
impl<'de> Deserialize<'de> for Decomposable
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 Decomposable
impl Display for Decomposable
Source§impl From<&Decomposable> for Decomposable
impl From<&Decomposable> for Decomposable
Source§fn from(value: &Decomposable) -> Self
fn from(value: &Decomposable) -> Self
Converts to this type from the input type.
Source§impl FromStr for Decomposable
impl FromStr for Decomposable
Source§impl Hash for Decomposable
impl Hash for Decomposable
Source§impl Ord for Decomposable
impl Ord for Decomposable
Source§fn cmp(&self, other: &Decomposable) -> Ordering
fn cmp(&self, other: &Decomposable) -> 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 Decomposable
impl PartialEq for Decomposable
Source§impl PartialOrd for Decomposable
impl PartialOrd for Decomposable
Source§impl Serialize for Decomposable
impl Serialize for Decomposable
Source§impl TryFrom<&String> for Decomposable
impl TryFrom<&String> for Decomposable
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for Decomposable
impl TryFrom<&str> for Decomposable
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for Decomposable
impl TryFrom<String> for Decomposable
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for Decomposable
impl Eq for Decomposable
impl StructuralPartialEq for Decomposable
Auto Trait Implementations§
impl Freeze for Decomposable
impl RefUnwindSafe for Decomposable
impl Send for Decomposable
impl Sync for Decomposable
impl Unpin for Decomposable
impl UnwindSafe for Decomposable
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.