ActionLinkStruct

Struct ActionLinkStruct 

Source
pub struct ActionLinkStruct { /* private fields */ }

Trait Implementations§

Source§

impl Debug for ActionLinkStruct

Source§

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

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

impl ParseMetaFlatNamed for ActionLinkStruct

Source§

fn field_names() -> &'static [&'static str]

Returns an array specifying all optional and required fields accepted by this structure.
Source§

fn parse_meta_flat_named<'____s, ____S>( inputs: &[____S], _mode: ParseMode, prefix: &str, validate: bool, ) -> Result<Self>
where ____S: Borrow<ParseBuffer<'____s>>,

Parse the item from a group of inline named contexts. Read more
Source§

const ACCEPTS_ALL: bool = false

A flag noting if this parser will consume all unknown fields. Read more
Source§

impl ParseMetaFlatUnnamed for ActionLinkStruct

Source§

fn field_count() -> Option<usize>

Returns the number of fields in this structure. Read more
Source§

fn parse_meta_flat_unnamed<'____s, ____S>( inputs: &[____S], mode: ParseMode, _index: usize, ) -> Result<Self>
where ____S: Borrow<ParseBuffer<'____s>>,

Parse the item from a group of inline contexts. Read more
Source§

impl ParseMetaItem for ActionLinkStruct

Source§

fn parse_meta_item(input: ParseStream<'_>, _mode: ParseMode) -> Result<Self>

Parse the item from the tokens in input. Read more
Source§

fn parse_meta_item_inline<'____s, ____S>( inputs: &[____S], _mode: ParseMode, ) -> Result<Self>
where ____S: Borrow<ParseBuffer<'____s>>,

Parse the item in an inline context. Read more
Source§

fn parse_meta_item_flag(span: Span) -> Result<Self>

Parses an empty flag value. Read more
Source§

fn parse_meta_item_named( input: &ParseBuffer<'_>, _name: &str, span: Span, ) -> Result<Self, Error>

Parses the item following a name. Read more
Source§

fn missing_meta_item(name: &str, span: Span) -> Result<Self, Error>

Fallback for when a required item is missing. Read more

Auto Trait Implementations§

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<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.