Trait embedded_cli::service::FromRaw
source · pub trait FromRaw<'a>: Sized {
// Required method
fn parse(raw: RawCommand<'a>) -> Result<Self, ParseError<'a>>;
}Required Methods§
sourcefn parse(raw: RawCommand<'a>) -> Result<Self, ParseError<'a>>
fn parse(raw: RawCommand<'a>) -> Result<Self, ParseError<'a>>
Parse raw command into typed command
Object Safety§
This trait is not object safe.