pub struct AdaTypeDeclaration {
pub name: String,
pub type_def: String,
}Expand description
An Ada type declaration
Fields§
§name: String§type_def: StringImplementations§
Trait Implementations§
Source§impl Clone for AdaTypeDeclaration
impl Clone for AdaTypeDeclaration
Source§fn clone(&self) -> AdaTypeDeclaration
fn clone(&self) -> AdaTypeDeclaration
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 AdaTypeDeclaration
impl Debug for AdaTypeDeclaration
Source§impl PartialEq for AdaTypeDeclaration
impl PartialEq for AdaTypeDeclaration
impl Eq for AdaTypeDeclaration
impl StructuralPartialEq for AdaTypeDeclaration
Auto Trait Implementations§
impl Freeze for AdaTypeDeclaration
impl RefUnwindSafe for AdaTypeDeclaration
impl Send for AdaTypeDeclaration
impl Sync for AdaTypeDeclaration
impl Unpin for AdaTypeDeclaration
impl UnwindSafe for AdaTypeDeclaration
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