[][src]Struct loco_protocol::command::builder::Builder

pub struct Builder<C: CommandData> { /* fields omitted */ }

Builder struct used to create Command struct from CommandData

Implementations

impl<C: CommandData> Builder<C>[src]

pub fn new(id: i32, data: C) -> Self[src]

pub fn id(&self) -> i32[src]

pub fn status(&self) -> i16[src]

pub fn data_type(&self) -> i8[src]

pub fn data(&self) -> &C[src]

pub fn set_id(self, id: i32) -> Self[src]

pub fn set_status(self, status: i16) -> Self[src]

pub fn set_data_type(self, data_type: i8) -> Self[src]

pub fn set_data(self, data: C) -> Self[src]

pub fn encode(self) -> Result<Command, Error>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for Builder<C> where
    C: RefUnwindSafe

impl<C> Send for Builder<C> where
    C: Send

impl<C> Sync for Builder<C> where
    C: Sync

impl<C> Unpin for Builder<C> where
    C: Unpin

impl<C> UnwindSafe for Builder<C> where
    C: UnwindSafe

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, 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.