#[non_exhaustive]pub enum PenSize {
Small,
Standard,
Large,
}Available on crate feature
decode only.Expand description
Pen size (§79.102 (j) / SPA pen-size field; 2-bit). Value 3 is reserved.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
impl Copy for PenSize
impl Eq for PenSize
impl StructuralPartialEq for PenSize
Auto Trait Implementations§
impl Freeze for PenSize
impl RefUnwindSafe for PenSize
impl Send for PenSize
impl Sync for PenSize
impl Unpin for PenSize
impl UnsafeUnpin for PenSize
impl UnwindSafe for PenSize
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