Struct EncodeContext

Source
struct EncodeContext<'a, 'tcx> {
    tcx: TyCtxt<'tcx>,
    opaque: FileEncoder,
    type_shorthands: FxHashMap<Ty<'tcx>, usize>,
    predicate_shorthands: FxHashMap<PredicateKind<'tcx>, usize>,
    is_proc_macro: bool,
    hygiene_ctxt: &'a HygieneEncodeContext,
    symbol_table: FxHashMap<Symbol, usize>,
}

Fields§

§tcx: TyCtxt<'tcx>§opaque: FileEncoder§type_shorthands: FxHashMap<Ty<'tcx>, usize>§predicate_shorthands: FxHashMap<PredicateKind<'tcx>, usize>§is_proc_macro: bool§hygiene_ctxt: &'a HygieneEncodeContext§symbol_table: FxHashMap<Symbol, usize>

Trait Implementations§

Source§

impl<'a, 'tcx> Encodable<EncodeContext<'a, 'tcx>> for ExpnIndex

Source§

fn encode(&self, s: &mut EncodeContext<'a, 'tcx>)

Source§

impl Encoder for EncodeContext<'_, '_>

Source§

fn emit_usize(&mut self, value: usize)

Source§

fn emit_u128(&mut self, value: u128)

Source§

fn emit_u64(&mut self, value: u64)

Source§

fn emit_u32(&mut self, value: u32)

Source§

fn emit_u16(&mut self, value: u16)

Source§

fn emit_u8(&mut self, value: u8)

Source§

fn emit_isize(&mut self, value: isize)

Source§

fn emit_i128(&mut self, value: i128)

Source§

fn emit_i64(&mut self, value: i64)

Source§

fn emit_i32(&mut self, value: i32)

Source§

fn emit_i16(&mut self, value: i16)

Source§

fn emit_i8(&mut self, value: i8)

Source§

fn emit_bool(&mut self, value: bool)

Source§

fn emit_char(&mut self, value: char)

Source§

fn emit_str(&mut self, value: &str)

Source§

fn emit_raw_bytes(&mut self, value: &[u8])

Source§

impl SpanEncoder for EncodeContext<'_, '_>

Source§

fn encode_crate_num(&mut self, crate_num: CrateNum)

As a local identifier, a CrateNum is only meaningful within its context, e.g. within a tcx. Therefore, make sure to include the context when encode a CrateNum.
Source§

fn encode_def_index(&mut self, def_index: DefIndex)

Source§

fn encode_def_id(&mut self, def_id: DefId)

Source§

fn encode_syntax_context(&mut self, syntax_context: SyntaxContext)

Source§

fn encode_expn_id(&mut self, expn_id: ExpnId)

Source§

fn encode_span(&mut self, span: Span)

Source§

fn encode_symbol(&mut self, symbol: Symbol)

Source§

impl<'tcx> TyEncoder for EncodeContext<'_, 'tcx>

Source§

const CLEAR_CROSS_CRATE: bool = true

Source§

type I = TyCtxt<'tcx>

Source§

fn position(&self) -> usize

Source§

fn type_shorthands(&mut self) -> &mut FxHashMap<Ty<'tcx>, usize>

Source§

fn predicate_shorthands(&mut self) -> &mut FxHashMap<PredicateKind<'tcx>, usize>

Source§

fn encode_alloc_id(&mut self, _alloc_id: &AllocId)

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<'a, 'tcx> !UnwindSafe for EncodeContext<'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.