[−][src]Trait dsf_core::base::Parse
Parse trait for building parse-able objects
Associated Types
Loading content...Required methods
fn parse(buff: &[u8]) -> Result<(Self::Output, usize), Self::Error>
Parse method consumes a slice and returns an object and the remaining slice.
Provided methods
fn parse_iter<'a>(buff: &'a [u8]) -> ParseIter<'a, Self::Output, Self::Error>ⓘ
Parse iter consumes a slice and returns an iterator over decoded objects
Implementations on Foreign Types
impl Parse for String[src]
type Output = String
type Error = OptionsError
fn parse<'a>(data: &[u8]) -> Result<(Self::Output, usize), Self::Error>[src]
impl Parse for Vec<u8>[src]
type Output = Vec<u8>
type Error = OptionsError
fn parse<'a>(data: &[u8]) -> Result<(Self::Output, usize), Self::Error>[src]
Implementors
impl Parse for Options[src]
Parse parses a control option from the given scope