pub enum NullabilityHandling {
Mirror,
DeclaredOutput,
Discrete,
}
Expand description
NullabilityHandling
JSON schema
{
"type": "string",
"enum": [
"MIRROR",
"DECLARED_OUTPUT",
"DISCRETE"
]
}
Variants§
Trait Implementations§
Source§impl Clone for NullabilityHandling
impl Clone for NullabilityHandling
Source§fn clone(&self) -> NullabilityHandling
fn clone(&self) -> NullabilityHandling
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 NullabilityHandling
impl Debug for NullabilityHandling
Source§impl<'de> Deserialize<'de> for NullabilityHandling
impl<'de> Deserialize<'de> for NullabilityHandling
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 NullabilityHandling
impl Display for NullabilityHandling
Source§impl From<&NullabilityHandling> for NullabilityHandling
impl From<&NullabilityHandling> for NullabilityHandling
Source§fn from(value: &NullabilityHandling) -> Self
fn from(value: &NullabilityHandling) -> Self
Converts to this type from the input type.
Source§impl FromStr for NullabilityHandling
impl FromStr for NullabilityHandling
Source§impl Hash for NullabilityHandling
impl Hash for NullabilityHandling
Source§impl Ord for NullabilityHandling
impl Ord for NullabilityHandling
Source§fn cmp(&self, other: &NullabilityHandling) -> Ordering
fn cmp(&self, other: &NullabilityHandling) -> 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 NullabilityHandling
impl PartialEq for NullabilityHandling
Source§impl PartialOrd for NullabilityHandling
impl PartialOrd for NullabilityHandling
Source§impl Serialize for NullabilityHandling
impl Serialize for NullabilityHandling
Source§impl TryFrom<&String> for NullabilityHandling
impl TryFrom<&String> for NullabilityHandling
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for NullabilityHandling
impl TryFrom<&str> for NullabilityHandling
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for NullabilityHandling
impl TryFrom<String> for NullabilityHandling
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for NullabilityHandling
impl Eq for NullabilityHandling
impl StructuralPartialEq for NullabilityHandling
Auto Trait Implementations§
impl Freeze for NullabilityHandling
impl RefUnwindSafe for NullabilityHandling
impl Send for NullabilityHandling
impl Sync for NullabilityHandling
impl Unpin for NullabilityHandling
impl UnwindSafe for NullabilityHandling
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.