[][src]Struct mpsse::builder::ReadBuilder

pub struct ReadBuilder { /* fields omitted */ }

Build a Data Shifting Command set to read bytes.

Implementations

impl ReadBuilder[src]

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

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

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

use mpsse::{Builder, ClockEdge};

let commands = Builder::new()
    .read_data(1)
    .with_clock_direction(ClockEdge::Rising)
    .then()
    .read_data(1)
    .with_clock_direction(ClockEdge::Falling)
    .build();

assert_eq!(commands, vec![0x20, 0x00, 0x00, 0x21, 0x00, 0x00])

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

Set this command to read the bits in a specific direction

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

use mpsse::{Builder, BitDirection};

let commands = Builder::new()
    .read_data(1)
    .with_bit_direction(BitDirection::MsbFirst)
    .then()
    .read_data(1)
    .with_bit_direction(BitDirection::LsbFirst)
    .build();

assert_eq!(commands, vec![0x20, 0x00, 0x00, 0x28, 0x00, 0x00])

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 ReadBuilder[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.