pub enum Value<'i> {
String {
tag: &'i str,
value: &'i [u8],
},
Binary {
tag: &'i str,
data: &'i [u8],
},
}Expand description
An entry from a capability string
Variants§
Implementations§
Source§impl<'i> Value<'i>
impl<'i> Value<'i>
Sourcepub fn parse_capabilities(capability_string: &'i [u8]) -> ValueParser<'i> ⓘ
pub fn parse_capabilities(capability_string: &'i [u8]) -> ValueParser<'i> ⓘ
Create a new iterator over the values in a capability string
Sourcepub fn parse_bytes(data: &'i [u8]) -> Result<Self>
pub fn parse_bytes(data: &'i [u8]) -> Result<Self>
Parse a single capability string entry
Trait Implementations§
Source§impl<'a> From<&'a UnknownTag> for Value<'a>
impl<'a> From<&'a UnknownTag> for Value<'a>
Source§fn from(v: &'a UnknownTag) -> Self
fn from(v: &'a UnknownTag) -> Self
Converts to this type from the input type.
Source§impl From<Value<'_>> for UnknownTag
impl From<Value<'_>> for UnknownTag
Source§impl<'i> Parser<&'i [u8], Value<'i>, Error<&'i [u8]>> for ValueParser<'i>
impl<'i> Parser<&'i [u8], Value<'i>, Error<&'i [u8]>> for ValueParser<'i>
Source§fn parse(&mut self, input: &'i [u8]) -> IResult<&'i [u8], Value<'i>>
fn parse(&mut self, input: &'i [u8]) -> IResult<&'i [u8], Value<'i>>
A parser takes in input type, and returns a
Result containing
either the remaining input and the output value, or an errorSource§fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O>
fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O>
Creates a second parser from the output of the first one, then apply over the rest of the input
Source§fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O>
fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O>
Applies a second parser over the output of the first one
Source§fn and<G, O2>(self, g: G) -> And<Self, G>
fn and<G, O2>(self, g: G) -> And<Self, G>
Applies a second parser after the first one, return their results as a tuple
impl<'i> Copy for Value<'i>
impl<'i> Eq for Value<'i>
impl<'i> StructuralPartialEq for Value<'i>
Auto Trait Implementations§
impl<'i> Freeze for Value<'i>
impl<'i> RefUnwindSafe for Value<'i>
impl<'i> Send for Value<'i>
impl<'i> Sync for Value<'i>
impl<'i> Unpin for Value<'i>
impl<'i> UnwindSafe for Value<'i>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more