Trait rocket::mtls::oid::asn1_rs::nom::InputTake

source ·
pub trait InputTake: Sized {
    // Required methods
    fn take(&self, count: usize) -> Self;
    fn take_split(&self, count: usize) -> (Self, Self);
}
Available on crate feature mtls only.
Expand description

Abstracts slicing operations

Required Methods§

source

fn take(&self, count: usize) -> Self

Returns a slice of count bytes. panics if count > length

source

fn take_split(&self, count: usize) -> (Self, Self)

Split the stream at the count byte offset. panics if count > length

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> InputTake for &'a str

source§

fn take(&self, count: usize) -> &'a str

source§

fn take_split(&self, count: usize) -> (&'a str, &'a str)

source§

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

source§

fn take(&self, count: usize) -> &'a [u8]

source§

fn take_split(&self, count: usize) -> (&'a [u8], &'a [u8])

Implementors§