[−][src]Enum input_linux::SynchronizeKind
Synchronization events.
Variants
Implementations
impl SynchronizeKind[src]
pub const COUNT: usize[src]
The maximum valid value.
pub fn iter() -> EnumIterator<Self>ⓘNotable traits for EnumIterator<T>
impl<T: IterableEnum> Iterator for EnumIterator<T> type Item = T;[src]
Notable traits for EnumIterator<T>
impl<T: IterableEnum> Iterator for EnumIterator<T> type Item = T;An iterator over all values of the enum.
pub fn bitmask() -> Bitmask<Self>[src]
A bitmask that can contain all values of the enum.
impl SynchronizeKind[src]
pub fn from_code(code: u16) -> Result<Self, RangeError>[src]
Instantiates the enum from a raw code value.
Trait Implementations
impl BitmaskTrait for SynchronizeKind[src]
type Array = [u8; 2]
The underlying array storage data type.
type Index = SynchronizeKind
The type that the bitmask can be indexed by.
pub const ZERO: Self::Array[src]
pub fn array_default() -> Self::Array[src]
pub fn array_slice(array: &Self::Array) -> &[u8][src]
pub fn array_slice_mut(array: &mut Self::Array) -> &mut [u8][src]
pub fn index(index: Self::Index) -> usize[src]
pub fn index_valid(_array: &Self::Array, _index: Self::Index) -> bool[src]
impl Clone for SynchronizeKind[src]
pub fn clone(&self) -> SynchronizeKind[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for SynchronizeKind[src]
impl Debug for SynchronizeKind[src]
impl Eq for SynchronizeKind[src]
impl From<SynchronizeKind> for u16[src]
pub fn from(v: SynchronizeKind) -> Self[src]
impl Hash for SynchronizeKind[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl IterableEnum for SynchronizeKind[src]
pub fn iter_next(v: usize) -> Option<(usize, Self)>[src]
pub fn iter() -> EnumIterator<Self>ⓘNotable traits for EnumIterator<T>
impl<T: IterableEnum> Iterator for EnumIterator<T> type Item = T;[src]
Notable traits for EnumIterator<T>
impl<T: IterableEnum> Iterator for EnumIterator<T> type Item = T;impl Ord for SynchronizeKind[src]
pub fn cmp(&self, other: &SynchronizeKind) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<SynchronizeKind> for SynchronizeKind[src]
pub fn eq(&self, other: &SynchronizeKind) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<SynchronizeKind> for SynchronizeKind[src]
pub fn partial_cmp(&self, other: &SynchronizeKind) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for SynchronizeKind[src]
impl StructuralPartialEq for SynchronizeKind[src]
impl TryFrom<u16> for SynchronizeKind[src]
Auto Trait Implementations
impl RefUnwindSafe for SynchronizeKind
impl Send for SynchronizeKind
impl Sync for SynchronizeKind
impl Unpin for SynchronizeKind
impl UnwindSafe for SynchronizeKind
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,