pub struct ActionLinkStruct { /* private fields */ }Trait Implementations§
Source§impl Debug for ActionLinkStruct
impl Debug for ActionLinkStruct
Source§impl ParseMetaFlatNamed for ActionLinkStruct
impl ParseMetaFlatNamed for ActionLinkStruct
Source§fn field_names() -> &'static [&'static str]
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>>,
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
const ACCEPTS_ALL: bool = false
A flag noting if this parser will consume all unknown fields. Read more
Source§impl ParseMetaFlatUnnamed for ActionLinkStruct
impl ParseMetaFlatUnnamed for ActionLinkStruct
Source§fn parse_meta_flat_unnamed<'____s, ____S>(
inputs: &[____S],
mode: ParseMode,
_index: usize,
) -> Result<Self>where
____S: Borrow<ParseBuffer<'____s>>,
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
impl ParseMetaItem for ActionLinkStruct
Source§fn parse_meta_item(input: ParseStream<'_>, _mode: ParseMode) -> Result<Self>
fn parse_meta_item(input: ParseStream<'_>, _mode: ParseMode) -> Result<Self>
Parse the item from the tokens in
input. Read moreSource§fn parse_meta_item_inline<'____s, ____S>(
inputs: &[____S],
_mode: ParseMode,
) -> Result<Self>where
____S: Borrow<ParseBuffer<'____s>>,
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_named(
input: &ParseBuffer<'_>,
_name: &str,
span: Span,
) -> Result<Self, Error>
fn parse_meta_item_named( input: &ParseBuffer<'_>, _name: &str, span: Span, ) -> Result<Self, Error>
Parses the item following a name. Read more
Auto Trait Implementations§
impl Freeze for ActionLinkStruct
impl RefUnwindSafe for ActionLinkStruct
impl Send for ActionLinkStruct
impl Sync for ActionLinkStruct
impl Unpin for ActionLinkStruct
impl UnwindSafe for ActionLinkStruct
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
Mutably borrows from an owned value. Read more