#[non_exhaustive]pub enum RdExpectedNode {
Tagged,
Link,
Href,
List,
Tabular,
Equation,
Sexpr,
RdOpts,
Group,
Item,
TextLike,
}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.
Trait Implementations§
Source§impl Clone for RdExpectedNode
impl Clone for RdExpectedNode
Source§fn clone(&self) -> RdExpectedNode
fn clone(&self) -> RdExpectedNode
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 RdExpectedNode
Source§impl Debug for RdExpectedNode
impl Debug for RdExpectedNode
Source§impl Display for RdExpectedNode
impl Display for RdExpectedNode
impl Eq for RdExpectedNode
Source§impl PartialEq for RdExpectedNode
impl PartialEq for RdExpectedNode
impl StructuralPartialEq for RdExpectedNode
Auto Trait Implementations§
impl Freeze for RdExpectedNode
impl RefUnwindSafe for RdExpectedNode
impl Send for RdExpectedNode
impl Sync for RdExpectedNode
impl Unpin for RdExpectedNode
impl UnsafeUnpin for RdExpectedNode
impl UnwindSafe for RdExpectedNode
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