pub struct Alias {
pub original_type_id: TypeId,
pub type_id: TypeId,
pub generic_types: Vec<TypeId>,
}Expand description
Represents an alias to a type with a set of generic parameters that must be mapped prior to use.
Fields§
§original_type_id: TypeIdA pointer to the alias from which this was derived.
type_id: TypeId§generic_types: Vec<TypeId>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Alias
impl RefUnwindSafe for Alias
impl Send for Alias
impl Sync for Alias
impl Unpin for Alias
impl UnwindSafe for Alias
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