[][src]Struct async_coap::option::OptionKey

pub struct OptionKey<T>(pub OptionNumber, _);

Typed option key, for type-safe access to CoAP options.

Methods

impl<T> OptionKey<T>[src]

pub const fn new(n: OptionNumber) -> OptionKey<T>[src]

Creates a new instance with the given option number.

Methods from Deref<Target = OptionNumber>

Trait Implementations

impl<T> Send for OptionKey<T>[src]

impl<T: Ord> Ord for OptionKey<T>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<T: PartialOrd> PartialOrd<OptionKey<T>> for OptionKey<T>[src]

impl<T: PartialEq> PartialEq<OptionKey<T>> for OptionKey<T>[src]

impl<T> Clone for OptionKey<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Eq> Eq for OptionKey<T>[src]

impl<T> Copy for OptionKey<T>[src]

impl<T> Deref for OptionKey<T>[src]

type Target = OptionNumber

The resulting type after dereferencing.

impl<T> Debug for OptionKey<T>[src]

impl<T: Hash> Hash for OptionKey<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<T> Unpin for OptionKey<T>

impl<T> !Sync for OptionKey<T>

impl<T> UnwindSafe for OptionKey<T> where
    T: RefUnwindSafe

impl<T> RefUnwindSafe for OptionKey<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,