Skip to main content

ReprAttribute

Struct ReprAttribute 

Source
pub struct ReprAttribute<'a> {
    pub ast: &'a Attribute,
    pub metas: Vec<Meta>,
}

Fields§

§ast: &'a Attribute§metas: Vec<Meta>

Implementations§

Source§

impl<'a> ReprAttribute<'a>

Source

pub fn parse(ast: &'a Attribute) -> Result<Self>

Source

pub fn parse_from(ast: &'a Attribute, effective: &Attribute) -> Result<Self>

Parse a repr attribute using the effective attribute for content extraction. ast is stored as the original attribute reference (for error spans). effective is used to parse the actual repr list.

Source

pub fn get_number_type_node(&self) -> Option<NumberTypeNode>

Trait Implementations§

Source§

impl<'a> Debug for ReprAttribute<'a>

Source§

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

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

impl<'a> From<ReprAttribute<'a>> for Attribute<'a>

Source§

fn from(value: ReprAttribute<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a> PartialEq for ReprAttribute<'a>

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for ReprAttribute<'a>

Source§

impl<'a> TryFrom<&'a Attribute<'a>> for &'a ReprAttribute<'a>

Source§

type Error = CodamaError

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

fn try_from(attribute: &'a Attribute<'_>) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<'a> !Send for ReprAttribute<'a>

§

impl<'a> !Sync for ReprAttribute<'a>

§

impl<'a> Freeze for ReprAttribute<'a>

§

impl<'a> RefUnwindSafe for ReprAttribute<'a>

§

impl<'a> Unpin for ReprAttribute<'a>

§

impl<'a> UnsafeUnpin for ReprAttribute<'a>

§

impl<'a> UnwindSafe for ReprAttribute<'a>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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<'a, T, U> TryFromFilter<'a, U> for T
where T: 'a, &'a T: TryFrom<U>,

Source§

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

Source§

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.