pub enum StateRef<'a> {
    Set,
    Unset,
    Value(ValueRef<'a>),
    Unspecified,
}
Expand description

The state an attribute can be in, referencing the value.

Note that this doesn’t contain the name.

Variants§

§

Set

The attribute is listed, or has the special value ‘true’

§

Unset

The attribute has the special value ‘false’, or was prefixed with a - sign.

§

Value(ValueRef<'a>)

The attribute is set to the given value, which followed the = sign. Note that values can be empty.

§

Unspecified

The attribute isn’t mentioned with a given path or is explicitly set to Unspecified using the ! sign.

Implementations§

source§

impl StateRef<'_>

Access

source

pub fn is_unspecified(&self) -> bool

Return true if the associated attribute was set to be unspecified using the !attr prefix or it wasn’t mentioned.

source

pub fn is_set(&self) -> bool

Return true if the associated attribute was set with attr. Note that this will also be true if a value is assigned.

source

pub fn is_unset(&self) -> bool

Return true if the associated attribute was set with -attr to specifically remove it.

source

pub fn as_bstr(&self) -> Option<&BStr>

Attempt to obtain the string value of this state, or return None if there is no such value.

source§

impl<'a> StateRef<'a>

Initialization

source

pub fn from_bytes(input: &'a [u8]) -> Self

Keep input in one of our enums.

source§

impl<'a> StateRef<'a>

Access

source

pub fn to_owned(self) -> State

Turn ourselves into our owned counterpart.

Trait Implementations§

source§

impl<'a> Clone for StateRef<'a>

source§

fn clone(&self) -> StateRef<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for StateRef<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<StateRef<'a>> for State

source§

fn from(s: StateRef<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for StateRef<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> Ord for StateRef<'a>

source§

fn cmp(&self, other: &StateRef<'a>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<'a> PartialEq<StateRef<'a>> for StateRef<'a>

source§

fn eq(&self, other: &StateRef<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> PartialOrd<StateRef<'a>> for StateRef<'a>

source§

fn partial_cmp(&self, other: &StateRef<'a>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a> Copy for StateRef<'a>

source§

impl<'a> Eq for StateRef<'a>

source§

impl<'a> StructuralEq for StateRef<'a>

source§

impl<'a> StructuralPartialEq for StateRef<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for StateRef<'a>

§

impl<'a> Send for StateRef<'a>

§

impl<'a> Sync for StateRef<'a>

§

impl<'a> Unpin for StateRef<'a>

§

impl<'a> UnwindSafe for StateRef<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.