pub enum AccessCause {
Explicit(AccessKind),
Reborrow(AccessKind),
Dealloc,
FnExit(AccessKind),
}Expand description
Cause of an access: either a real access or one inserted by Tree Borrows due to a reborrow or a deallocation.
Variants§
Implementations§
Source§impl AccessCause
impl AccessCause
fn print_as_access(self, is_foreign: bool) -> String
Trait Implementations§
Auto Trait Implementations§
impl DynSend for AccessCause
impl DynSync for AccessCause
impl Freeze for AccessCause
impl RefUnwindSafe for AccessCause
impl Send for AccessCause
impl Sync for AccessCause
impl Unpin for AccessCause
impl UnsafeUnpin for AccessCause
impl UnwindSafe for AccessCause
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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: 2 bytes
Size for each variant:
Explicit: 1 byteReborrow: 1 byteDealloc: 0 bytesFnExit: 1 byte