[][src]Struct whiteread::adapters::Skip

pub struct Skip;

Used to consume and ignore one whitespace-separated value

Examples

Providing type hint

let (_, x, _): (Skip, i32, Skip) = parse_string("foo 5 30").unwrap();
assert_eq!(x, 5);

Relying on type inference (for some reason, {} are mandatory)

let (Skip{}, x, Skip{}) = parse_string("foo 5 30").unwrap();
let x: i32 = x;
assert_eq!(x, 5);

Trait Implementations

impl FromStream for Skip[src]

impl Default for Skip[src]

impl Eq for Skip[src]

impl PartialEq<Skip> for Skip[src]

impl Debug for Skip[src]

impl StructuralPartialEq for Skip[src]

impl StructuralEq for Skip[src]

Auto Trait Implementations

impl Send for Skip

impl Sync for Skip

impl Unpin for Skip

impl UnwindSafe for Skip

impl RefUnwindSafe for Skip

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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