Enum cyfs_lib::TrackerDirection
source · pub enum TrackerDirection {
Unknown,
From,
To,
Store,
}
Variants§
Trait Implementations§
source§impl Clone for TrackerDirection
impl Clone for TrackerDirection
source§fn clone(&self) -> TrackerDirection
fn clone(&self) -> TrackerDirection
Returns a copy 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 TrackerDirection
impl Debug for TrackerDirection
source§impl From<u8> for TrackerDirection
impl From<u8> for TrackerDirection
source§fn from(code: u8) -> TrackerDirection
fn from(code: u8) -> TrackerDirection
Converts to this type from the input type.
source§impl IntEnum for TrackerDirection
impl IntEnum for TrackerDirection
source§fn int_value(self) -> <TrackerDirection as IntEnum>::Int
fn int_value(self) -> <TrackerDirection as IntEnum>::Int
Returns the integer value of the enum.
source§fn from_int(
n: <TrackerDirection as IntEnum>::Int
) -> Result<TrackerDirection, IntEnumError<TrackerDirection>>where
TrackerDirection: Sized,
fn from_int( n: <TrackerDirection as IntEnum>::Int ) -> Result<TrackerDirection, IntEnumError<TrackerDirection>>where TrackerDirection: Sized,
Attempts to convert an integer into the enum.
source§impl Into<u8> for TrackerDirection
impl Into<u8> for TrackerDirection
source§impl PartialEq<TrackerDirection> for TrackerDirection
impl PartialEq<TrackerDirection> for TrackerDirection
source§fn eq(&self, other: &TrackerDirection) -> bool
fn eq(&self, other: &TrackerDirection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.