[][src]Struct light_cli::LightCliInput

pub struct LightCliInput<SLEN> where
    SLEN: ArrayLength<u8>, 
{ /* fields omitted */ }

Methods

impl<SLEN: ArrayLength<u8>> LightCliInput<SLEN>[src]

pub fn new() -> Self[src]

Create a new LightCLI instance.

pub fn parse_data<CB>(&mut self, callback: CB) -> Result<(), Error> where
    CB: FnMut(CallbackCommand), 
[src]

Try to parse as much data from the internal ring buffer as possible.

Arguments

  • callback - This is the callback that will receive all parsing events.

Remarks

All commands are in the form "COMMAND KEY=VALUE". For every parsed key/value pair the callback will be triggered with the current command string, current key and the corresponding value. When a newline is read the callback is triggered with a command event.

pub fn fill<E>(&mut self, ser: &mut dyn Read<u8, Error = E>) -> Result<(), E>[src]

Copy as many available bytes from ser into the buffer as possible.

Arguments

  • ser - The serial interface to read from.

Remarks

This will continue to try to read a byte from the serial device until the device returns nb::Error::WouldBlock.

Auto Trait Implementations

impl<SLEN> Send for LightCliInput<SLEN>

impl<SLEN> !Sync for LightCliInput<SLEN>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T[src]

type Output = T

Should always be Self