Compare commits

..

No commits in common. "45dbf1a13c9f67eed05c93d694dc0f62557e2bcd" and "73c4458f230953da4d754266c2092cee451d0cbb" have entirely different histories.

3 changed files with 7 additions and 55 deletions

View File

@ -2,7 +2,6 @@
//! simple static types, which are completely [Context]-independent.
pub mod atomic_object;
pub mod au64;
pub mod boolean;
pub mod plain;

View File

@ -1,50 +0,0 @@
use crate::rstd::inlining::*;
use super::*;
impl Serializable for u64 {
fn serialize(&self, serializer: &mut dyn Serializer) {
serializer.write(&self.to_le_bytes());
}
}
#[derive(Debug, PartialEq)]
pub enum IntParseError {
Eof,
ExtraData(usize),
}
impl Display for IntParseError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Eof => f.write_fmt(format_args!("encountered EOF write parsing an integer.")),
Self::ExtraData(length) => f.write_fmt(format_args!(
"encountered extra data of length {length} while parsing an integer.",
)),
}
}
}
impl Error for IntParseError {}
impl From<&[u8]> for IntParseError {
fn from(_value: &[u8]) -> Self {
Self::Eof
}
}
impl Atomic for u64 {
type AParseError = IntParseError;
fn a_deserialize(deserializer: &mut dyn Deserializer) -> Result<Self, Self::AParseError> {
Ok(u64::from_le_bytes(deserializer.read_n_const::<8>()?))
}
fn a_unexpected_tail(tail: &[u8]) -> Self::AParseError {
IntParseError::ExtraData(tail.len())
}
}
impl ConstSizeAtomic for u64 {
const SIZE: usize = 8;
}

View File

@ -21,12 +21,15 @@ pub enum BooleanParseError {
impl Display for BooleanParseError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::OutOfBounds(value) => {
BooleanParseError::OutOfBounds(value) => {
f.write_fmt(format_args!("boolean value out of bounds: {}.", value))
}
Self::Eof => f.write_fmt(format_args!("encountered EOF write parsing a boolean.")),
Self::ExtraData(length) => f.write_fmt(format_args!(
"encountered extra data of length {length} while parsing a boolean.",
BooleanParseError::Eof => {
f.write_fmt(format_args!("encountered EOF write parsing a boolean."))
}
BooleanParseError::ExtraData(length) => f.write_fmt(format_args!(
"encountered extra data of length {} while parsing a boolean",
length
)),
}
}