pub struct InterfaceDescription<'a> { /* private fields */ }Expand description
The interface description.
Use InterfaceDescription::parse to get the Interface.
Under the hood, the interface description is either a parsed Interface or a raw string.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for InterfaceDescription<'a>
impl<'a> Clone for InterfaceDescription<'a>
Source§fn clone(&self) -> InterfaceDescription<'a>
fn clone(&self) -> InterfaceDescription<'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 InterfaceDescription<'a>
impl<'a> Debug for InterfaceDescription<'a>
Source§impl<'a> From<&Interface<'a>> for InterfaceDescription<'a>
impl<'a> From<&Interface<'a>> for InterfaceDescription<'a>
Source§impl<'a> Serialize for InterfaceDescription<'a>
impl<'a> Serialize for InterfaceDescription<'a>
Auto Trait Implementations§
impl<'a> Freeze for InterfaceDescription<'a>
impl<'a> RefUnwindSafe for InterfaceDescription<'a>
impl<'a> Send for InterfaceDescription<'a>
impl<'a> Sync for InterfaceDescription<'a>
impl<'a> Unpin for InterfaceDescription<'a>
impl<'a> UnwindSafe for InterfaceDescription<'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