pub enum ForgivingComplexSelector {
ComplexSelector(ComplexSelector),
ListOfComponentValues(ListOfComponentValues),
}
Variants§
ComplexSelector(ComplexSelector)
ListOfComponentValues(ListOfComponentValues)
Implementations§
source§impl ForgivingComplexSelector
impl ForgivingComplexSelector
sourcepub const fn is_complex_selector(&self) -> bool
pub const fn is_complex_selector(&self) -> bool
Returns true
if self
is of variant ComplexSelector
.
sourcepub fn as_complex_selector(&self) -> Option<&ComplexSelector>
pub fn as_complex_selector(&self) -> Option<&ComplexSelector>
Returns Some
if self
is a reference of variant ComplexSelector
, and None
otherwise.
sourcepub fn as_mut_complex_selector(&mut self) -> Option<&mut ComplexSelector>
pub fn as_mut_complex_selector(&mut self) -> Option<&mut ComplexSelector>
Returns Some
if self
is a mutable reference of variant ComplexSelector
, and None
otherwise.
sourcepub fn expect_complex_selector(self) -> ComplexSelectorwhere
Self: Debug,
pub fn expect_complex_selector(self) -> ComplexSelectorwhere
Self: Debug,
Unwraps the value, yielding the content of ComplexSelector
.
§Panics
Panics if the value is not ComplexSelector
, with a panic message including the content of self
.
sourcepub fn complex_selector(self) -> Option<ComplexSelector>
pub fn complex_selector(self) -> Option<ComplexSelector>
Returns Some
if self
is of variant ComplexSelector
, and None
otherwise.
sourcepub const fn is_list_of_component_values(&self) -> bool
pub const fn is_list_of_component_values(&self) -> bool
Returns true
if self
is of variant ListOfComponentValues
.
sourcepub fn as_list_of_component_values(&self) -> Option<&ListOfComponentValues>
pub fn as_list_of_component_values(&self) -> Option<&ListOfComponentValues>
Returns Some
if self
is a reference of variant ListOfComponentValues
, and None
otherwise.
sourcepub fn as_mut_list_of_component_values(
&mut self,
) -> Option<&mut ListOfComponentValues>
pub fn as_mut_list_of_component_values( &mut self, ) -> Option<&mut ListOfComponentValues>
Returns Some
if self
is a mutable reference of variant ListOfComponentValues
, and None
otherwise.
sourcepub fn expect_list_of_component_values(self) -> ListOfComponentValueswhere
Self: Debug,
pub fn expect_list_of_component_values(self) -> ListOfComponentValueswhere
Self: Debug,
Unwraps the value, yielding the content of ListOfComponentValues
.
§Panics
Panics if the value is not ListOfComponentValues
, with a panic message including the content of self
.
sourcepub fn list_of_component_values(self) -> Option<ListOfComponentValues>
pub fn list_of_component_values(self) -> Option<ListOfComponentValues>
Returns Some
if self
is of variant ListOfComponentValues
, and None
otherwise.
Trait Implementations§
source§impl Clone for ForgivingComplexSelector
impl Clone for ForgivingComplexSelector
source§fn clone(&self) -> ForgivingComplexSelector
fn clone(&self) -> ForgivingComplexSelector
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ForgivingComplexSelector
impl Debug for ForgivingComplexSelector
source§impl EqIgnoreSpan for ForgivingComplexSelector
impl EqIgnoreSpan for ForgivingComplexSelector
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<ComplexSelector> for ForgivingComplexSelector
impl From<ComplexSelector> for ForgivingComplexSelector
source§fn from(v: ComplexSelector) -> Self
fn from(v: ComplexSelector) -> Self
source§impl From<ListOfComponentValues> for ForgivingComplexSelector
impl From<ListOfComponentValues> for ForgivingComplexSelector
source§fn from(v: ListOfComponentValues) -> Self
fn from(v: ListOfComponentValues) -> Self
source§impl Hash for ForgivingComplexSelector
impl Hash for ForgivingComplexSelector
source§impl PartialEq for ForgivingComplexSelector
impl PartialEq for ForgivingComplexSelector
source§impl Spanned for ForgivingComplexSelector
impl Spanned for ForgivingComplexSelector
impl Eq for ForgivingComplexSelector
impl StructuralPartialEq for ForgivingComplexSelector
Auto Trait Implementations§
impl Freeze for ForgivingComplexSelector
impl RefUnwindSafe for ForgivingComplexSelector
impl Send for ForgivingComplexSelector
impl Sync for ForgivingComplexSelector
impl Unpin for ForgivingComplexSelector
impl UnwindSafe for ForgivingComplexSelector
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more