Struct DecodeContext

Source
struct DecodeContext<'a, 'tcx> {
    tcx: TyCtxt<'tcx>,
    opaque: MemDecoder<'a>,
}

Fields§

§tcx: TyCtxt<'tcx>§opaque: MemDecoder<'a>

Trait Implementations§

Source§

impl<'a, 'tcx> Decoder for DecodeContext<'a, 'tcx>

Source§

fn read_usize(&mut self) -> usize

Source§

fn read_u128(&mut self) -> u128

Source§

fn read_u64(&mut self) -> u64

Source§

fn read_u32(&mut self) -> u32

Source§

fn read_u16(&mut self) -> u16

Source§

fn read_u8(&mut self) -> u8

Source§

fn read_isize(&mut self) -> isize

Source§

fn read_i128(&mut self) -> i128

Source§

fn read_i64(&mut self) -> i64

Source§

fn read_i32(&mut self) -> i32

Source§

fn read_i16(&mut self) -> i16

Source§

fn read_raw_bytes(&mut self, len: usize) -> &[u8]

Source§

fn peek_byte(&self) -> u8

Source§

fn position(&self) -> usize

Source§

fn read_i8(&mut self) -> i8

Source§

fn read_bool(&mut self) -> bool

Source§

fn read_char(&mut self) -> char

Source§

fn read_str(&mut self) -> &str

Source§

impl SpanDecoder for DecodeContext<'_, '_>

Source§

impl<'tcx> TyDecoder for DecodeContext<'_, 'tcx>

Source§

const CLEAR_CROSS_CRATE: bool = true

Source§

type I = TyCtxt<'tcx>

Source§

fn interner(&self) -> Self::I

Source§

fn cached_ty_for_shorthand<F>( &mut self, shorthand: usize, or_insert_with: F, ) -> Ty<'tcx>
where F: FnOnce(&mut Self) -> Ty<'tcx>,

Source§

fn with_position<F, R>(&mut self, pos: usize, f: F) -> R
where F: FnOnce(&mut Self) -> R,

Source§

fn decode_alloc_id(&mut self) -> AllocId

§

fn positioned_at_shorthand(&self) -> bool

Auto Trait Implementations§

§

impl<'a, 'tcx> Freeze for DecodeContext<'a, 'tcx>

§

impl<'a, 'tcx> !RefUnwindSafe for DecodeContext<'a, 'tcx>

§

impl<'a, 'tcx> !Send for DecodeContext<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for DecodeContext<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for DecodeContext<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for DecodeContext<'a, 'tcx>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.