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