[][src]Enum plm::AllLinkMode

pub enum AllLinkMode {
    Responder,
    Controller,
    Auto,
    Delete,
    None,
}

Represents the various link modes available.

Variants

Responder

In this mode, the modem is linked as a responder or receiver of events.

Controller

In this mode, the modem is linked as a controller.

Auto

In this mode, the effective link mode depends on the ordering in which the modem and device are entered into link mode.

Delete

Causes a link to be deleted.

None

When received in a AllLinkComplete, indicates that no link was made.

Trait Implementations

impl Clone for AllLinkMode[src]

impl Copy for AllLinkMode[src]

impl Debug for AllLinkMode[src]

impl Display for AllLinkMode[src]

impl From<AllLinkMode> for u8[src]

impl From<u8> for AllLinkMode[src]

impl PartialEq<AllLinkMode> for AllLinkMode[src]

impl StructuralPartialEq for AllLinkMode[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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> ToString for T where
    T: Display + ?Sized
[src]

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.