[−][src]Struct light_cli::LightCliInput
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]
CB: FnMut(CallbackCommand),
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]
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same for T
[src]
type Output = T
Should always be Self