pub enum SupportsInParensKind<'s> {
SupportsCondition(SupportsCondition<'s>),
Feature(Box<SupportsDecl<'s>>),
Selector(SelectorList<'s>),
Function(Function<'s>),
}Variants§
SupportsCondition(SupportsCondition<'s>)
Feature(Box<SupportsDecl<'s>>)
Selector(SelectorList<'s>)
Function(Function<'s>)
Trait Implementations§
Source§impl<'s> Clone for SupportsInParensKind<'s>
impl<'s> Clone for SupportsInParensKind<'s>
Source§fn clone(&self) -> SupportsInParensKind<'s>
fn clone(&self) -> SupportsInParensKind<'s>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'s> Debug for SupportsInParensKind<'s>
impl<'s> Debug for SupportsInParensKind<'s>
Source§impl<'s> PartialEq for SupportsInParensKind<'s>
impl<'s> PartialEq for SupportsInParensKind<'s>
Source§fn eq(&self, other: &SupportsInParensKind<'s>) -> bool
fn eq(&self, other: &SupportsInParensKind<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for SupportsInParensKind<'s>
Auto Trait Implementations§
impl<'s> Freeze for SupportsInParensKind<'s>
impl<'s> RefUnwindSafe for SupportsInParensKind<'s>
impl<'s> Send for SupportsInParensKind<'s>
impl<'s> Sync for SupportsInParensKind<'s>
impl<'s> Unpin for SupportsInParensKind<'s>
impl<'s> UnsafeUnpin for SupportsInParensKind<'s>
impl<'s> UnwindSafe for SupportsInParensKind<'s>
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