Enum rustc_const_eval::util::CallDesugaringKind
source · [−]pub enum CallDesugaringKind {
ForLoopIntoIter,
QuestionBranch,
QuestionFromResidual,
TryBlockFromOutput,
}
Variants
ForLoopIntoIter
for _ in x {} calls x.into_iter()
QuestionBranch
x? calls x.branch()
QuestionFromResidual
x? calls type_of(x)::from_residual()
TryBlockFromOutput
try { ..; x } calls type_of(x)::from_output(x)
Implementations
sourceimpl CallDesugaringKind
impl CallDesugaringKind
pub fn trait_def_id(self, tcx: TyCtxt<'_>) -> DefId
Trait Implementations
sourceimpl Clone for CallDesugaringKind
impl Clone for CallDesugaringKind
sourcefn clone(&self) -> CallDesugaringKind
fn clone(&self) -> CallDesugaringKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CallDesugaringKind
impl Debug for CallDesugaringKind
sourceimpl PartialEq<CallDesugaringKind> for CallDesugaringKind
impl PartialEq<CallDesugaringKind> for CallDesugaringKind
sourcefn eq(&self, other: &CallDesugaringKind) -> bool
fn eq(&self, other: &CallDesugaringKind) -> bool
impl Copy for CallDesugaringKind
impl Eq for CallDesugaringKind
impl StructuralEq for CallDesugaringKind
impl StructuralPartialEq for CallDesugaringKind
Auto Trait Implementations
impl RefUnwindSafe for CallDesugaringKind
impl Send for CallDesugaringKind
impl Sync for CallDesugaringKind
impl Unpin for CallDesugaringKind
impl UnwindSafe for CallDesugaringKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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: 1 byte
Size for each variant:
ForLoopIntoIter
: 0 bytesQuestionBranch
: 0 bytesQuestionFromResidual
: 0 bytesTryBlockFromOutput
: 0 bytes