[][src]Struct dynamixel2::instructions::SyncWriteU32

pub struct SyncWriteU32<'a> {
    pub address: u16,
    pub data: &'a [WriteData<u32>],
}

Synchronously write an u32 to multiple motors.

Fields

address: u16

The address to write to.

data: &'a [WriteData<u32>]

The data to write, including motor IDs to write to.

Implementations

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

pub fn new(address: u16, data: &'a [WriteData<u32>]) -> Self[src]

Create a new SyncWriteU8 instruction to write an u32 to a list of motors.

Trait Implementations

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

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

type Response = u8

The response type.

Auto Trait Implementations

impl<'a> RefUnwindSafe for SyncWriteU32<'a>

impl<'a> Send for SyncWriteU32<'a>

impl<'a> Sync for SyncWriteU32<'a>

impl<'a> Unpin for SyncWriteU32<'a>

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