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