pub enum MediaConditionWithoutOrType {
Not(MediaNot),
And(MediaAnd),
MediaInParens(MediaInParens),
}
Variants
Not(MediaNot)
And(MediaAnd)
MediaInParens(MediaInParens)
Implementations
sourceimpl MediaConditionWithoutOrType
impl MediaConditionWithoutOrType
sourcepub fn as_not(&self) -> Option<&MediaNot>
pub fn as_not(&self) -> Option<&MediaNot>
Returns Some
if self
is a reference of variant Not
, and None
otherwise.
sourcepub fn as_mut_not(&mut self) -> Option<&mut MediaNot>
pub fn as_mut_not(&mut self) -> Option<&mut MediaNot>
Returns Some
if self
is a mutable reference of variant Not
, and None
otherwise.
sourcepub fn expect_not(self) -> MediaNotwhere
Self: Debug,
pub fn expect_not(self) -> MediaNotwhere
Self: Debug,
sourcepub fn not(self) -> Option<MediaNot>
pub fn not(self) -> Option<MediaNot>
Returns Some
if self
is of variant Not
, and None
otherwise.
sourcepub fn as_and(&self) -> Option<&MediaAnd>
pub fn as_and(&self) -> Option<&MediaAnd>
Returns Some
if self
is a reference of variant And
, and None
otherwise.
sourcepub fn as_mut_and(&mut self) -> Option<&mut MediaAnd>
pub fn as_mut_and(&mut self) -> Option<&mut MediaAnd>
Returns Some
if self
is a mutable reference of variant And
, and None
otherwise.
sourcepub fn expect_and(self) -> MediaAndwhere
Self: Debug,
pub fn expect_and(self) -> MediaAndwhere
Self: Debug,
sourcepub fn and(self) -> Option<MediaAnd>
pub fn and(self) -> Option<MediaAnd>
Returns Some
if self
is of variant And
, and None
otherwise.
sourcepub fn is_media_in_parens(&self) -> bool
pub fn is_media_in_parens(&self) -> bool
Returns true
if self
is of variant MediaInParens
.
sourcepub fn as_media_in_parens(&self) -> Option<&MediaInParens>
pub fn as_media_in_parens(&self) -> Option<&MediaInParens>
Returns Some
if self
is a reference of variant MediaInParens
, and None
otherwise.
sourcepub fn as_mut_media_in_parens(&mut self) -> Option<&mut MediaInParens>
pub fn as_mut_media_in_parens(&mut self) -> Option<&mut MediaInParens>
Returns Some
if self
is a mutable reference of variant MediaInParens
, and None
otherwise.
sourcepub fn expect_media_in_parens(self) -> MediaInParenswhere
Self: Debug,
pub fn expect_media_in_parens(self) -> MediaInParenswhere
Self: Debug,
Unwraps the value, yielding the content of MediaInParens
.
Panics
Panics if the value is not MediaInParens
, with a panic message including the content of self
.
sourcepub fn media_in_parens(self) -> Option<MediaInParens>
pub fn media_in_parens(self) -> Option<MediaInParens>
Returns Some
if self
is of variant MediaInParens
, and None
otherwise.
Trait Implementations
sourceimpl Clone for MediaConditionWithoutOrType
impl Clone for MediaConditionWithoutOrType
sourcefn clone(&self) -> MediaConditionWithoutOrType
fn clone(&self) -> MediaConditionWithoutOrType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MediaConditionWithoutOrType
impl Debug for MediaConditionWithoutOrType
sourceimpl<'de> Deserialize<'de> for MediaConditionWithoutOrType
impl<'de> Deserialize<'de> for MediaConditionWithoutOrType
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl EqIgnoreSpan for MediaConditionWithoutOrType
impl EqIgnoreSpan for MediaConditionWithoutOrType
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl From<MediaAnd> for MediaConditionWithoutOrType
impl From<MediaAnd> for MediaConditionWithoutOrType
sourceimpl From<MediaInParens> for MediaConditionWithoutOrType
impl From<MediaInParens> for MediaConditionWithoutOrType
sourcefn from(v: MediaInParens) -> Self
fn from(v: MediaInParens) -> Self
Converts to this type from the input type.
sourceimpl From<MediaNot> for MediaConditionWithoutOrType
impl From<MediaNot> for MediaConditionWithoutOrType
sourceimpl Hash for MediaConditionWithoutOrType
impl Hash for MediaConditionWithoutOrType
sourceimpl PartialEq<MediaConditionWithoutOrType> for MediaConditionWithoutOrType
impl PartialEq<MediaConditionWithoutOrType> for MediaConditionWithoutOrType
sourcefn eq(&self, other: &MediaConditionWithoutOrType) -> bool
fn eq(&self, other: &MediaConditionWithoutOrType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Spanned for MediaConditionWithoutOrType
impl Spanned for MediaConditionWithoutOrType
impl Eq for MediaConditionWithoutOrType
impl StructuralEq for MediaConditionWithoutOrType
impl StructuralPartialEq for MediaConditionWithoutOrType
Auto Trait Implementations
impl RefUnwindSafe for MediaConditionWithoutOrType
impl Send for MediaConditionWithoutOrType
impl Sync for MediaConditionWithoutOrType
impl Unpin for MediaConditionWithoutOrType
impl UnwindSafe for MediaConditionWithoutOrType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more