pub struct AbiTags(/* private fields */);Expand description
The <abi-tags> non-terminal.
<abi-tags> ::= <abi-tag> [<abi-tags>]To make things easier on ourselves, despite the fact that the <abi-tags>
production requires at least one tag, we’ll allow a zero-length vector
here instead of having to use Option
Trait Implementations§
impl Eq for AbiTags
impl StructuralPartialEq for AbiTags
Auto Trait Implementations§
impl Freeze for AbiTags
impl RefUnwindSafe for AbiTags
impl Send for AbiTags
impl Sync for AbiTags
impl Unpin for AbiTags
impl UnwindSafe for AbiTags
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