pub struct SimpleClassType<'a> {
pub name: &'a str,
pub type_args: Vec<TypeArgument<'a>>,
}
Expand description
Represents a simple (ie. not nested) and possibly type-parametrized class type.
Fields§
§name: &'a str
§type_args: Vec<TypeArgument<'a>>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SimpleClassType<'a>
impl<'a> RefUnwindSafe for SimpleClassType<'a>
impl<'a> Send for SimpleClassType<'a>
impl<'a> Sync for SimpleClassType<'a>
impl<'a> Unpin for SimpleClassType<'a>
impl<'a> UnwindSafe for SimpleClassType<'a>
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