[][src]Struct dynamixel2::instructions::Raw

pub struct Raw<'a> {
    pub packet_id: u8,
    pub instruction_id: u8,
    pub instruction_params: &'a [u8],
    pub response_params: &'a mut [u8],
}

A raw instruction.

Fields

packet_id: u8

The packet ID.

instruction_id: u8

The instruction ID.

instruction_params: &'a [u8]

The instruction parameters.

response_params: &'a mut [u8]

Buffer for the response parameters.

Trait Implementations

impl<'_> Instruction for Raw<'_>[src]

type Response = RawResponse

The response type.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Raw<'a>

impl<'a> Send for Raw<'a>

impl<'a> Sync for Raw<'a>

impl<'a> Unpin for Raw<'a>

impl<'a> !UnwindSafe for Raw<'a>

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.