pub enum AbbrevId {
Reserved(ReservedAbbrevId),
Defined(u64),
}
Expand description
An abbreviation ID, whether reserved or defined by the stream itself.
Variants§
Reserved(ReservedAbbrevId)
A reserved abbreviation ID.
Defined(u64)
An abbreviation ID that’s been defined within the stream.
Trait Implementations§
impl Copy for AbbrevId
Auto Trait Implementations§
impl Freeze for AbbrevId
impl RefUnwindSafe for AbbrevId
impl Send for AbbrevId
impl Sync for AbbrevId
impl Unpin for AbbrevId
impl UnwindSafe for AbbrevId
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