pub(crate) struct OffloadManifestEncoder<'a, 'tcx> {
encoder: FileEncoder<'a>,
type_shorthands: FxHashMap<Ty<'tcx>, usize>,
predicate_shorthands: FxHashMap<PredicateKind<'tcx>, usize>,
tcx: TyCtxt<'tcx>,
}Fields§
§encoder: FileEncoder<'a>§type_shorthands: FxHashMap<Ty<'tcx>, usize>§predicate_shorthands: FxHashMap<PredicateKind<'tcx>, usize>§tcx: TyCtxt<'tcx>Implementations§
Trait Implementations§
Source§impl<'a, 'tcx> Encoder for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> Encoder for OffloadManifestEncoder<'a, 'tcx>
fn emit_usize(&mut self, v: usize)
fn emit_u128(&mut self, v: u128)
fn emit_u64(&mut self, v: u64)
fn emit_u32(&mut self, v: u32)
fn emit_u16(&mut self, v: u16)
fn emit_u8(&mut self, v: u8)
fn emit_isize(&mut self, v: isize)
fn emit_i128(&mut self, v: i128)
fn emit_i64(&mut self, v: i64)
fn emit_i32(&mut self, v: i32)
fn emit_i16(&mut self, v: i16)
fn emit_i8(&mut self, v: i8)
fn emit_raw_bytes(&mut self, v: &[u8])
fn emit_bool(&mut self, v: bool)
fn emit_char(&mut self, v: char)
fn emit_str(&mut self, v: &str)
fn emit_byte_str(&mut self, v: &[u8])
Source§impl<'a, 'tcx> SpanEncoder for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> SpanEncoder for OffloadManifestEncoder<'a, 'tcx>
fn encode_span(&mut self, _span: Span)
fn encode_symbol(&mut self, sym: Symbol)
fn encode_byte_symbol(&mut self, byte_sym: ByteSymbol)
fn encode_expn_id(&mut self, _expn_id: ExpnId)
fn encode_syntax_context(&mut self, _syntax_context: SyntaxContext)
Source§fn encode_crate_num(&mut self, crate_num: CrateNum)
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.fn encode_def_index(&mut self, def_index: DefIndex)
fn encode_def_id(&mut self, def_id: DefId)
Source§impl<'a, 'tcx> TyEncoder<'tcx> for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> TyEncoder<'tcx> for OffloadManifestEncoder<'a, 'tcx>
const CLEAR_CROSS_CRATE: bool = true
fn position(&self) -> usize
fn type_shorthands(&mut self) -> &mut FxHashMap<Ty<'tcx>, usize>
fn predicate_shorthands(&mut self) -> &mut FxHashMap<PredicateKind<'tcx>, usize>
fn encode_alloc_id(&mut self, _alloc_id: &AllocId)
Auto Trait Implementations§
impl<'a, 'tcx> !DynSync for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> !RefUnwindSafe for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> !Send for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> !Sync for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> !UnwindSafe for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> DynSend for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> Freeze for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> Unpin for OffloadManifestEncoder<'a, 'tcx>
impl<'a, 'tcx> UnsafeUnpin for OffloadManifestEncoder<'a, 'tcx>
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, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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 moreSource§impl<K> IntoQueryKey<K> for K
impl<K> IntoQueryKey<K> for K
Source§fn into_query_key(self) -> K
fn into_query_key(self) -> K
Argument conversion from
Self to K.
This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
Source§fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 152 bytes