Enum rustc_middle::ty::cast::CastTy [−][src]
pub enum CastTy<'tcx> {
Int(IntTy),
Float,
FnPtr,
Ptr(TypeAndMut<'tcx>),
}
Variants
Int(IntTy)
Various types that are represented as ints and handled mostly in the same way, merged for easier matching.
Tuple Fields of Int
0: IntTy
Floating-point types.
Function pointers.
Ptr(TypeAndMut<'tcx>)
Raw pointers.
Tuple Fields of Ptr
0: TypeAndMut<'tcx>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for CastTy<'tcx>
impl<'tcx> !UnwindSafe for CastTy<'tcx>
Blanket Implementations
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: 24 bytes
Size for each variant:
Int
: 1 byteFloat
: 0 bytesFnPtr
: 0 bytesPtr
: 23 bytes