pub struct AliasDeclaration {
pub designator: WithPos<Designator>,
pub subtype_indication: Option<SubtypeIndication>,
pub name: WithPos<Name>,
pub signature: Option<Signature>,
}
Expand description
LRM 6.6 Alias declarations
Fields§
§designator: WithPos<Designator>
§subtype_indication: Option<SubtypeIndication>
§name: WithPos<Name>
§signature: Option<Signature>
Trait Implementations§
Source§impl Clone for AliasDeclaration
impl Clone for AliasDeclaration
Source§fn clone(&self) -> AliasDeclaration
fn clone(&self) -> AliasDeclaration
Returns a copy 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 AliasDeclaration
impl Debug for AliasDeclaration
Source§impl PartialEq for AliasDeclaration
impl PartialEq for AliasDeclaration
impl StructuralPartialEq for AliasDeclaration
Auto Trait Implementations§
impl Freeze for AliasDeclaration
impl !RefUnwindSafe for AliasDeclaration
impl Send for AliasDeclaration
impl Sync for AliasDeclaration
impl Unpin for AliasDeclaration
impl !UnwindSafe for AliasDeclaration
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