pub struct TypeArguments {
pub args: Vec<TypeArgument>,
pub lt_token: Span,
pub gt_tokens: Vec<Span>,
}Expand description
Type arguments: <String, Integer>.
Fields§
§args: Vec<TypeArgument>§lt_token: Span§gt_tokens: Vec<Span>Trait Implementations§
Source§impl Clone for TypeArguments
impl Clone for TypeArguments
Source§fn clone(&self) -> TypeArguments
fn clone(&self) -> TypeArguments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TypeArguments
impl Debug for TypeArguments
Source§impl Hash for TypeArguments
impl Hash for TypeArguments
Source§impl PartialEq for TypeArguments
impl PartialEq for TypeArguments
Source§fn eq(&self, other: &TypeArguments) -> bool
fn eq(&self, other: &TypeArguments) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TypeArguments
impl StructuralPartialEq for TypeArguments
Auto Trait Implementations§
impl Freeze for TypeArguments
impl RefUnwindSafe for TypeArguments
impl Send for TypeArguments
impl Sync for TypeArguments
impl Unpin for TypeArguments
impl UnsafeUnpin for TypeArguments
impl UnwindSafe for TypeArguments
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