#[non_exhaustive]pub enum RdNodeKind {
Text,
RCode,
Verb,
Comment,
Tagged,
Group,
Raw,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for RdNodeKind
impl Clone for RdNodeKind
Source§fn clone(&self) -> RdNodeKind
fn clone(&self) -> RdNodeKind
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 moreimpl Copy for RdNodeKind
Source§impl Debug for RdNodeKind
impl Debug for RdNodeKind
Source§impl Display for RdNodeKind
impl Display for RdNodeKind
impl Eq for RdNodeKind
Source§impl PartialEq for RdNodeKind
impl PartialEq for RdNodeKind
impl StructuralPartialEq for RdNodeKind
Auto Trait Implementations§
impl Freeze for RdNodeKind
impl RefUnwindSafe for RdNodeKind
impl Send for RdNodeKind
impl Sync for RdNodeKind
impl Unpin for RdNodeKind
impl UnsafeUnpin for RdNodeKind
impl UnwindSafe for RdNodeKind
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