#[non_exhaustive]pub enum RdOptionValueKind {
Boolean,
Stage,
Results,
StripWhite,
}Expand description
Expected typed value categories for known options.
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 RdOptionValueKind
impl Clone for RdOptionValueKind
Source§fn clone(&self) -> RdOptionValueKind
fn clone(&self) -> RdOptionValueKind
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 RdOptionValueKind
Source§impl Debug for RdOptionValueKind
impl Debug for RdOptionValueKind
Source§impl Display for RdOptionValueKind
impl Display for RdOptionValueKind
impl Eq for RdOptionValueKind
Source§impl PartialEq for RdOptionValueKind
impl PartialEq for RdOptionValueKind
impl StructuralPartialEq for RdOptionValueKind
Auto Trait Implementations§
impl Freeze for RdOptionValueKind
impl RefUnwindSafe for RdOptionValueKind
impl Send for RdOptionValueKind
impl Sync for RdOptionValueKind
impl Unpin for RdOptionValueKind
impl UnsafeUnpin for RdOptionValueKind
impl UnwindSafe for RdOptionValueKind
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