pub struct TypeParameterDeclaration {
pub params: Vec<TypeParameter>,
}Expand description
Type parameter declaration (<T: Bound, U = Default>).
Fields§
§params: Vec<TypeParameter>Trait Implementations§
Source§impl Clone for TypeParameterDeclaration
impl Clone for TypeParameterDeclaration
Source§fn clone(&self) -> TypeParameterDeclaration
fn clone(&self) -> TypeParameterDeclaration
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 Debug for TypeParameterDeclaration
impl Debug for TypeParameterDeclaration
Source§impl<'de> Deserialize<'de> for TypeParameterDeclaration
impl<'de> Deserialize<'de> for TypeParameterDeclaration
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
Auto Trait Implementations§
impl Freeze for TypeParameterDeclaration
impl RefUnwindSafe for TypeParameterDeclaration
impl Send for TypeParameterDeclaration
impl Sync for TypeParameterDeclaration
impl Unpin for TypeParameterDeclaration
impl UnsafeUnpin for TypeParameterDeclaration
impl UnwindSafe for TypeParameterDeclaration
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