Trait winnow::stream::AsBytes

source ·
pub trait AsBytes {
    // Required method
    fn as_bytes(&self) -> &[u8] ;
}
Expand description

Helper trait for types that can be viewed as a byte slice

Required Methods§

source

fn as_bytes(&self) -> &[u8]

Casts the input type to a byte slice

Implementations on Foreign Types§

source§

impl<'a> AsBytes for &'a [u8]

source§

fn as_bytes(&self) -> &[u8]

Implementors§

source§

impl<'a> AsBytes for &'a Bytes

source§

impl<I> AsBytes for Located<I>
where I: AsBytes,

source§

impl<I> AsBytes for Partial<I>
where I: AsBytes,

source§

impl<I, E> AsBytes for Recoverable<I, E>
where I: Stream + AsBytes,

Available on crate features unstable-recover and std only.
source§

impl<I, S> AsBytes for Stateful<I, S>
where I: AsBytes,