[][src]Struct mpsse::builder::WriteBuilder

pub struct WriteBuilder { /* fields omitted */ }

Build a Data Shifting Command set to write bytes.

Implementations

impl WriteBuilder[src]

pub fn with_clock_direction(self, direction: ClockEdge) -> Self[src]

Set this command to write the bits on a specific clock edge.

By default, the WriteBuilder will build the command with the clock direction set Rising (meaning read on the rising clock).

use mpsse::{Builder, ClockEdge};

let commands = Builder::new()
    .write_data(vec![0x01])
    .with_clock_direction(ClockEdge::Rising)
    .then()
    .write_data(vec![0x01])
    .with_clock_direction(ClockEdge::Falling)
    .build();

assert_eq!(commands, vec![0x10, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01])

pub fn with_bit_direction(self, direction: BitDirection) -> Self[src]

Set this command to write the bits in a specific direction

By default, the WriteBuilder will build the command with the bit direction set MsbFirst.

use mpsse::{Builder, BitDirection};

let commands = Builder::new()
    .write_data(vec![0x01])
    .with_bit_direction(BitDirection::MsbFirst)
    .then()
    .write_data(vec![0x01])
    .with_bit_direction(BitDirection::LsbFirst)
    .build();

assert_eq!(commands, vec![0x10, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x01])

pub fn then(self) -> Builder[src]

Same as commit, but more readable in a chain.

pub fn build(self) -> Vec<u8>[src]

Commit this command to the parent Builder, then get the entire command list as a byte sequence.

Trait Implementations

impl Debug for WriteBuilder[src]

Auto Trait Implementations

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.