Trait SubCursor

Source
pub trait SubCursor<R> {
    type Output<'a>
       where Self: 'a;

    // Required method
    fn sub_cursor(&self, range: R) -> Self::Output<'_>;
}

Required Associated Types§

Source

type Output<'a> where Self: 'a

Required Methods§

Source

fn sub_cursor(&self, range: R) -> Self::Output<'_>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl SubCursor<Range<usize>> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<Range<usize>> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeFrom<usize>> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeFrom<usize>> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeFull> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeFull> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeInclusive<usize>> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeInclusive<usize>> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeTo<usize>> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeTo<usize>> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeToInclusive<usize>> for BitCursor<&BitSlice<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a

Source§

impl SubCursor<RangeToInclusive<usize>> for BitCursor<BitVec<u8, Msb0>>

Source§

type Output<'a> = BitCursor<&'a BitSlice<u8, Msb0>> where Self: 'a