pub struct GenericTypeAlias {
pub lifetime_params: Vec<String>,
pub type_params: Vec<String>,
pub ty: Type,
}Expand description
Generic type alias definition
Fields§
§lifetime_params: Vec<String>§type_params: Vec<String>§ty: TypeTrait Implementations§
Source§impl Clone for GenericTypeAlias
impl Clone for GenericTypeAlias
Source§fn clone(&self) -> GenericTypeAlias
fn clone(&self) -> GenericTypeAlias
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 moreAuto Trait Implementations§
impl Freeze for GenericTypeAlias
impl RefUnwindSafe for GenericTypeAlias
impl Send for GenericTypeAlias
impl Sync for GenericTypeAlias
impl Unpin for GenericTypeAlias
impl UnsafeUnpin for GenericTypeAlias
impl UnwindSafe for GenericTypeAlias
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