pub struct DartTypeAlias {
pub name: String,
pub ty: DartType,
pub doc: Option<String>,
}Expand description
A Dart typedef (type alias) declaration.
Fields§
§name: String§ty: DartType§doc: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for DartTypeAlias
impl Clone for DartTypeAlias
Source§fn clone(&self) -> DartTypeAlias
fn clone(&self) -> DartTypeAlias
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 moreAuto Trait Implementations§
impl Freeze for DartTypeAlias
impl RefUnwindSafe for DartTypeAlias
impl Send for DartTypeAlias
impl Sync for DartTypeAlias
impl Unpin for DartTypeAlias
impl UnsafeUnpin for DartTypeAlias
impl UnwindSafe for DartTypeAlias
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