[][src]Struct dynamixel2::instructions::SyncWrite

pub struct SyncWrite<'a> {
    pub motor_ids: &'a [u8],
    pub address: u16,
    // some fields omitted
}

Perform a sync write using a supplied buffer.

Fields

motor_ids: &'a [u8]

The motors to write to.

address: u16

The address to write to.

Implementations

impl<'a> SyncWrite<'a>[src]

pub fn new(motor_ids: &'a [u8], address: u16, buffer: &'a [u8]) -> Self[src]

Create a new SyncWrite instruction to write data to a list motors.

To write 12 bytes from 3 motors, you must supply a buffer of 36 bytes.

Panic

Panics if the buffer size is not a multiple of the number of motors.

pub fn buffer(&self) -> &[u8][src]

Get a non-mutable reference to the write buffer.

pub fn length(&self) -> usize[src]

The number of bytes to write to each motor.

Trait Implementations

impl<'a> Debug for SyncWrite<'a>[src]

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

type Response = u8

The response type.

Auto Trait Implementations

impl<'a> RefUnwindSafe for SyncWrite<'a>

impl<'a> Send for SyncWrite<'a>

impl<'a> Sync for SyncWrite<'a>

impl<'a> Unpin for SyncWrite<'a>

impl<'a> UnwindSafe for SyncWrite<'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.