pub enum ActionOption {
Skip,
Token(u16),
More,
}Variants§
Implementations§
Trait Implementations§
Source§impl Add for ActionOption
impl Add for ActionOption
Source§type Output = ActionOption
type Output = ActionOption
The resulting type after applying the
+ operator.Source§fn add(self, rhs: ActionOption) -> <ActionOption as Add>::Output
fn add(self, rhs: ActionOption) -> <ActionOption as Add>::Output
Performs the
+ operation. Read moreSource§impl Clone for ActionOption
impl Clone for ActionOption
Source§fn clone(&self) -> ActionOption
fn clone(&self) -> ActionOption
Returns a duplicate 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 ActionOption
impl Debug for ActionOption
Source§impl Default for ActionOption
impl Default for ActionOption
Source§fn default() -> ActionOption
fn default() -> ActionOption
Returns the “default value” for a type. Read more
Source§impl Display for ActionOption
impl Display for ActionOption
Source§impl Ord for ActionOption
impl Ord for ActionOption
Source§fn cmp(&self, other: &ActionOption) -> Ordering
fn cmp(&self, other: &ActionOption) -> 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 for ActionOption
impl PartialEq for ActionOption
Source§impl PartialOrd for ActionOption
impl PartialOrd for ActionOption
impl Eq for ActionOption
impl StructuralPartialEq for ActionOption
Auto Trait Implementations§
impl Freeze for ActionOption
impl RefUnwindSafe for ActionOption
impl Send for ActionOption
impl Sync for ActionOption
impl Unpin for ActionOption
impl UnwindSafe for ActionOption
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
Source§impl<S> BuildFrom<S> for S
impl<S> BuildFrom<S> for S
Source§fn build_from(source: S) -> S
fn build_from(source: S) -> S
Converts to this type from the input type.
Source§impl<S, T> BuildInto<T> for Swhere
T: BuildFrom<S>,
impl<S, T> BuildInto<T> for Swhere
T: BuildFrom<S>,
Source§fn build_into(self) -> T
fn build_into(self) -> T
Calls T::from(self) to convert a [S] into a [T].
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S, T> TryBuildInto<T> for Swhere
T: TryBuildFrom<S>,
impl<S, T> TryBuildInto<T> for Swhere
T: TryBuildFrom<S>,
Source§type Error = <T as TryBuildFrom<S>>::Error
type Error = <T as TryBuildFrom<S>>::Error
The type returned in the event of a conversion error.
Source§fn try_build_into(self) -> Result<T, <T as TryBuildFrom<S>>::Error>
fn try_build_into(self) -> Result<T, <T as TryBuildFrom<S>>::Error>
Performs the conversion.