use super::Tag;
use crate::{Error, ErrorKind, Result};
use core::{convert::TryFrom, fmt};
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct TagNumber(pub(super) u8);
impl TagNumber {
pub const MAX: u8 = 30;
#[allow(clippy::no_effect)]
pub const fn new(byte: u8) -> Self {
["tag number out of range"][(byte > Self::MAX) as usize];
Self(byte)
}
pub fn application(self) -> Tag {
Tag::Application(self)
}
pub fn context_specific(self) -> Tag {
Tag::ContextSpecific(self)
}
pub fn private(self) -> Tag {
Tag::Private(self)
}
pub fn value(self) -> u8 {
self.0
}
}
impl TryFrom<u8> for TagNumber {
type Error = Error;
fn try_from(byte: u8) -> Result<Self> {
match byte {
0..=Self::MAX => Ok(Self(byte)),
_ => Err(ErrorKind::UnknownTag { byte }.into()),
}
}
}
impl From<TagNumber> for u8 {
fn from(tag_number: TagNumber) -> u8 {
tag_number.0
}
}
impl fmt::Display for TagNumber {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}