pub enum LifetimeConstraint {
Outlives {
longer: String,
shorter: String,
},
MustBeValid {
lifetime: String,
point: usize,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LifetimeConstraint
impl RefUnwindSafe for LifetimeConstraint
impl Send for LifetimeConstraint
impl Sync for LifetimeConstraint
impl Unpin for LifetimeConstraint
impl UnwindSafe for LifetimeConstraint
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