pub enum NodeFieldType {
Node,
Nodes,
MaybeNode,
RegexpOptions,
Loc,
MaybeLoc,
Str,
RawStr,
MaybeStr,
Chars,
StringValue,
U8,
}
Variants§
Trait Implementations§
source§impl Clone for NodeFieldType
impl Clone for NodeFieldType
source§fn clone(&self) -> NodeFieldType
fn clone(&self) -> NodeFieldType
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 NodeFieldType
impl Debug for NodeFieldType
source§impl Ord for NodeFieldType
impl Ord for NodeFieldType
source§fn cmp(&self, other: &NodeFieldType) -> Ordering
fn cmp(&self, other: &NodeFieldType) -> 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<NodeFieldType> for NodeFieldType
impl PartialEq<NodeFieldType> for NodeFieldType
source§fn eq(&self, other: &NodeFieldType) -> bool
fn eq(&self, other: &NodeFieldType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<NodeFieldType> for NodeFieldType
impl PartialOrd<NodeFieldType> for NodeFieldType
source§fn partial_cmp(&self, other: &NodeFieldType) -> Option<Ordering>
fn partial_cmp(&self, other: &NodeFieldType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more