pub struct Guard<'id> { /* private fields */ }Expand description
An invariant lifetime phantomdata-alike that is guaranteed to be unique with respect to other trusted invariant lifetimes.
In effect, this means that 'id is a “generative brand”. Use make_guard
to obtain a new Guard.
Implementations§
Source§impl<'id> Guard<'id>
impl<'id> Guard<'id>
Sourcepub unsafe fn new(id: Id<'id>) -> Guard<'id>
pub unsafe fn new(id: Id<'id>) -> Guard<'id>
Construct a Guard with an unbound lifetime.
You should not need to use this function; use make_guard! instead.
§Safety
Guard holds an invariant lifetime that must be an unused generative
brand. Using this function directly is the “I know what I’m doing”
button; restrict the lifetime to a known brand immediately to avoid
introducing potential unsoundness.
Trait Implementations§
impl<'id> Eq for Guard<'id>
impl<'id> StructuralPartialEq for Guard<'id>
Auto Trait Implementations§
impl<'id> Freeze for Guard<'id>
impl<'id> RefUnwindSafe for Guard<'id>
impl<'id> Send for Guard<'id>
impl<'id> Sync for Guard<'id>
impl<'id> Unpin for Guard<'id>
impl<'id> UnwindSafe for Guard<'id>
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