#[repr(u8)]
pub enum Class {
Universal,
Application,
ContextSpecific,
Private,
}
Expand description
BER Object class of tag
Variants
Universal
Universal
class of tags (0b00
)
Application
Application
class of tags (0b01
)
ContextSpecific
Context-Specific
class of tags (0b10
)
Private
Private
class of tags (0b11
)
Implementations
Trait Implementations
impl Copy for Class
impl Eq for Class
impl StructuralEq for Class
impl StructuralPartialEq for Class
Auto Trait Implementations
impl RefUnwindSafe for Class
impl Send for Class
impl Sync for Class
impl Unpin for Class
impl UnwindSafe for Class
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more