pub enum ValidateManifestBodySource {
TabulariumYaml,
TabulariumJson,
}Expand description
ValidateManifestBodySource
JSON schema
{
"type": "string",
"enum": [
"tabularium.yaml",
"tabularium.json"
]
}Variants§
Trait Implementations§
Source§impl Clone for ValidateManifestBodySource
impl Clone for ValidateManifestBodySource
Source§fn clone(&self) -> ValidateManifestBodySource
fn clone(&self) -> ValidateManifestBodySource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ValidateManifestBodySource
impl Debug for ValidateManifestBodySource
Source§impl<'de> Deserialize<'de> for ValidateManifestBodySource
impl<'de> Deserialize<'de> for ValidateManifestBodySource
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 ValidateManifestBodySource
impl Display for ValidateManifestBodySource
Source§impl From<&ValidateManifestBodySource> for ValidateManifestBodySource
impl From<&ValidateManifestBodySource> for ValidateManifestBodySource
Source§fn from(value: &ValidateManifestBodySource) -> Self
fn from(value: &ValidateManifestBodySource) -> Self
Converts to this type from the input type.
Source§impl FromStr for ValidateManifestBodySource
impl FromStr for ValidateManifestBodySource
Source§impl Hash for ValidateManifestBodySource
impl Hash for ValidateManifestBodySource
Source§impl Ord for ValidateManifestBodySource
impl Ord for ValidateManifestBodySource
Source§fn cmp(&self, other: &ValidateManifestBodySource) -> Ordering
fn cmp(&self, other: &ValidateManifestBodySource) -> Ordering
1.21.0 (const: unstable) · 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 ValidateManifestBodySource
impl PartialEq for ValidateManifestBodySource
Source§fn eq(&self, other: &ValidateManifestBodySource) -> bool
fn eq(&self, other: &ValidateManifestBodySource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ValidateManifestBodySource
impl PartialOrd for ValidateManifestBodySource
Source§impl TryFrom<&String> for ValidateManifestBodySource
impl TryFrom<&String> for ValidateManifestBodySource
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ValidateManifestBodySource
impl TryFrom<&str> for ValidateManifestBodySource
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ValidateManifestBodySource
impl TryFrom<String> for ValidateManifestBodySource
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ValidateManifestBodySource
impl Eq for ValidateManifestBodySource
impl StructuralPartialEq for ValidateManifestBodySource
Auto Trait Implementations§
impl Freeze for ValidateManifestBodySource
impl RefUnwindSafe for ValidateManifestBodySource
impl Send for ValidateManifestBodySource
impl Sync for ValidateManifestBodySource
impl Unpin for ValidateManifestBodySource
impl UnsafeUnpin for ValidateManifestBodySource
impl UnwindSafe for ValidateManifestBodySource
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