pub struct Input<'a> { /* private fields */ }
Expand description
A wrapper around &'a [u8]
that helps in writing panic-free code.
No methods of Input
will ever panic.
Implementations§
source§impl<'a> Input<'a>
impl<'a> Input<'a>
sourcepub fn read_all<F, R, E>(&self, incomplete_read: E, read: F) -> Result<R, E>
pub fn read_all<F, R, E>(&self, incomplete_read: E, read: F) -> Result<R, E>
Calls read
with the given input as a Reader
, ensuring that read
consumed the entire input. If read
does not consume the entire input,
incomplete_read
is returned.
sourcepub fn as_slice_less_safe(&self) -> &'a [u8]
pub fn as_slice_less_safe(&self) -> &'a [u8]
Access the input as a slice so it can be processed by functions that are not written using the Input/Reader framework.
Trait Implementations§
source§impl PartialEq<[u8]> for Input<'_>
impl PartialEq<[u8]> for Input<'_>
source§impl PartialEq<Input<'_>> for [u8]
impl PartialEq<Input<'_>> for [u8]
source§impl PartialEq<Input<'_>> for Input<'_>
impl PartialEq<Input<'_>> for Input<'_>
impl<'a> Copy for Input<'a>
impl<'a> Eq for Input<'a>
Auto Trait Implementations§
impl<'a> Freeze for Input<'a>
impl<'a> RefUnwindSafe for Input<'a>
impl<'a> Send for Input<'a>
impl<'a> Sync for Input<'a>
impl<'a> Unpin for Input<'a>
impl<'a> UnwindSafe for Input<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)