enum Context {
Safe,
UnsafeFn(HirId),
UnsafeBlock(HirId),
}
Expand description
Context information for UnusedUnsafeVisitor
traversal,
saves (innermost) relevant context
Variants§
Safe
UnsafeFn(HirId)
in an unsafe fn
UnsafeBlock(HirId)
in a used unsafe
block
(i.e. a block without unused-unsafe warning)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Context
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
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
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: 12 bytes
Size for each variant:
Safe
: 0 bytesUnsafeFn
: 8 bytesUnsafeBlock
: 8 bytes