pub struct InterfaceObjectDeclaration {
pub class: ObjectClass,
pub ident: Ident,
pub mode: Mode,
pub subtype_indication: SubtypeIndication,
pub expression: Option<WithPos<Expression>>,
}
Expand description
LRM 6.5.2 Interface object declarations
Fields§
§class: ObjectClass
§ident: Ident
§mode: Mode
§subtype_indication: SubtypeIndication
§expression: Option<WithPos<Expression>>
Trait Implementations§
Source§impl Clone for InterfaceObjectDeclaration
impl Clone for InterfaceObjectDeclaration
Source§fn clone(&self) -> InterfaceObjectDeclaration
fn clone(&self) -> InterfaceObjectDeclaration
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 InterfaceObjectDeclaration
impl Debug for InterfaceObjectDeclaration
impl StructuralPartialEq for InterfaceObjectDeclaration
Auto Trait Implementations§
impl Freeze for InterfaceObjectDeclaration
impl !RefUnwindSafe for InterfaceObjectDeclaration
impl Send for InterfaceObjectDeclaration
impl Sync for InterfaceObjectDeclaration
impl Unpin for InterfaceObjectDeclaration
impl !UnwindSafe for InterfaceObjectDeclaration
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