#[non_exhaustive]pub enum RdListKind {
Itemize,
Enumerate,
Describe,
}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 RdListKind
impl Clone for RdListKind
Source§fn clone(&self) -> RdListKind
fn clone(&self) -> RdListKind
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 RdListKind
Source§impl Debug for RdListKind
impl Debug for RdListKind
impl Eq for RdListKind
Source§impl PartialEq for RdListKind
impl PartialEq for RdListKind
impl StructuralPartialEq for RdListKind
Auto Trait Implementations§
impl Freeze for RdListKind
impl RefUnwindSafe for RdListKind
impl Send for RdListKind
impl Sync for RdListKind
impl Unpin for RdListKind
impl UnsafeUnpin for RdListKind
impl UnwindSafe for RdListKind
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