pub struct AttributeArgumentListReflection {
pub arguments: Vec<AttributeArgumentReflection>,
}Expand description
Represents a list of arguments for an attribute.
Fields§
§arguments: Vec<AttributeArgumentReflection>The list of arguments for the attribute.
Trait Implementations§
Source§impl Clone for AttributeArgumentListReflection
impl Clone for AttributeArgumentListReflection
Source§fn clone(&self) -> AttributeArgumentListReflection
fn clone(&self) -> AttributeArgumentListReflection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AttributeArgumentListReflection
impl<'de> Deserialize<'de> for AttributeArgumentListReflection
Source§fn 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
Source§impl Ord for AttributeArgumentListReflection
impl Ord for AttributeArgumentListReflection
Source§fn cmp(&self, other: &AttributeArgumentListReflection) -> Ordering
fn cmp(&self, other: &AttributeArgumentListReflection) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AttributeArgumentListReflection
impl PartialEq for AttributeArgumentListReflection
Source§fn eq(&self, other: &AttributeArgumentListReflection) -> bool
fn eq(&self, other: &AttributeArgumentListReflection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AttributeArgumentListReflection
impl PartialOrd for AttributeArgumentListReflection
impl Eq for AttributeArgumentListReflection
impl StructuralPartialEq for AttributeArgumentListReflection
Auto Trait Implementations§
impl Freeze for AttributeArgumentListReflection
impl RefUnwindSafe for AttributeArgumentListReflection
impl Send for AttributeArgumentListReflection
impl Sync for AttributeArgumentListReflection
impl Unpin for AttributeArgumentListReflection
impl UnwindSafe for AttributeArgumentListReflection
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