pub enum CesrVersion {
V1,
V2,
}Available on crate feature
core only.Expand description
CESR protocol version for code table selection.
V1 and V2 use different counter code tables — the same wire code
(e.g. -A) maps to different semantic groups depending on version.
Variants§
Trait Implementations§
Source§impl Clone for CesrVersion
impl Clone for CesrVersion
Source§fn clone(&self) -> CesrVersion
fn clone(&self) -> CesrVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CesrVersion
Source§impl Debug for CesrVersion
impl Debug for CesrVersion
Source§impl Default for CesrVersion
impl Default for CesrVersion
Source§fn default() -> CesrVersion
fn default() -> CesrVersion
Returns the “default value” for a type. Read more
impl Eq for CesrVersion
Source§impl Hash for CesrVersion
impl Hash for CesrVersion
Source§impl PartialEq for CesrVersion
impl PartialEq for CesrVersion
impl StructuralPartialEq for CesrVersion
Auto Trait Implementations§
impl Freeze for CesrVersion
impl RefUnwindSafe for CesrVersion
impl Send for CesrVersion
impl Sync for CesrVersion
impl Unpin for CesrVersion
impl UnsafeUnpin for CesrVersion
impl UnwindSafe for CesrVersion
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