pub enum InClauseGuard<'tree> {
IfGuard(Box<IfGuard<'tree>>),
UnlessGuard(Box<UnlessGuard<'tree>>),
}Variants§
Trait Implementations§
Source§impl<'tree> Clone for InClauseGuard<'tree>
impl<'tree> Clone for InClauseGuard<'tree>
Source§fn clone(&self) -> InClauseGuard<'tree>
fn clone(&self) -> InClauseGuard<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for InClauseGuard<'tree>
impl<'tree> Debug for InClauseGuard<'tree>
Source§impl<'tree> FromNode<'tree> for InClauseGuard<'tree>
impl<'tree> FromNode<'tree> for InClauseGuard<'tree>
Source§impl<'tree> PartialEq for InClauseGuard<'tree>
impl<'tree> PartialEq for InClauseGuard<'tree>
Source§impl Spanned for InClauseGuard<'_>
impl Spanned for InClauseGuard<'_>
impl<'tree> Eq for InClauseGuard<'tree>
impl<'tree> StructuralPartialEq for InClauseGuard<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for InClauseGuard<'tree>
impl<'tree> RefUnwindSafe for InClauseGuard<'tree>
impl<'tree> Send for InClauseGuard<'tree>
impl<'tree> Sync for InClauseGuard<'tree>
impl<'tree> Unpin for InClauseGuard<'tree>
impl<'tree> UnsafeUnpin for InClauseGuard<'tree>
impl<'tree> UnwindSafe for InClauseGuard<'tree>
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