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