pub enum InterfaceDeclaration<'a> {
InterfaceDeclarationNonansi(Box<InterfaceDeclarationNonansi<'a>>),
InterfaceDeclarationAnsi(Box<InterfaceDeclarationAnsi<'a>>),
InterfaceDeclarationWildcard(Box<InterfaceDeclarationWildcard<'a>>),
InterfaceDeclarationExternNonansi(Box<InterfaceDeclarationExternNonansi<'a>>),
InterfaceDeclarationExternAnsi(Box<InterfaceDeclarationExternAnsi<'a>>),
}Variants§
InterfaceDeclarationNonansi(Box<InterfaceDeclarationNonansi<'a>>)
InterfaceDeclarationAnsi(Box<InterfaceDeclarationAnsi<'a>>)
InterfaceDeclarationWildcard(Box<InterfaceDeclarationWildcard<'a>>)
InterfaceDeclarationExternNonansi(Box<InterfaceDeclarationExternNonansi<'a>>)
InterfaceDeclarationExternAnsi(Box<InterfaceDeclarationExternAnsi<'a>>)
Trait Implementations§
Source§impl<'a> Clone for InterfaceDeclaration<'a>
impl<'a> Clone for InterfaceDeclaration<'a>
Source§fn clone(&self) -> InterfaceDeclaration<'a>
fn clone(&self) -> InterfaceDeclaration<'a>
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<'a> Debug for InterfaceDeclaration<'a>
impl<'a> Debug for InterfaceDeclaration<'a>
Source§impl<'a> PartialEq for InterfaceDeclaration<'a>
impl<'a> PartialEq for InterfaceDeclaration<'a>
impl<'a> StructuralPartialEq for InterfaceDeclaration<'a>
Auto Trait Implementations§
impl<'a> Freeze for InterfaceDeclaration<'a>
impl<'a> RefUnwindSafe for InterfaceDeclaration<'a>
impl<'a> Send for InterfaceDeclaration<'a>
impl<'a> Sync for InterfaceDeclaration<'a>
impl<'a> Unpin for InterfaceDeclaration<'a>
impl<'a> UnwindSafe for InterfaceDeclaration<'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