[][src]Struct rubble::link::CompanyId

pub struct CompanyId(_);

Company identifier for use in link layer Control PDUs.

Methods

impl CompanyId[src]

pub fn from_raw(raw: u16) -> Self[src]

Create a company ID from a raw u16.

pub fn as_u16(&self) -> u16[src]

Get the raw u16 representing this company identifier.

pub fn name(&self) -> Option<&'static str>[src]

Get the full company name from this identifer.

WARNING: Using this method anywhere will add roughly 70KB to your binary size!

Trait Implementations

impl Copy for CompanyId[src]

impl Debug for CompanyId[src]

impl Clone for CompanyId[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for CompanyId

impl Sync for CompanyId

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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