use core::fmt::Debug;
use crate::{
DecodeErrorHandler, EncodeErrorHandler, TopDecodeMulti, TopDecodeMultiInput, TopEncodeMulti,
TopEncodeMultiOutput,
};
#[must_use]
#[derive(Clone)]
pub enum OptionalValue<T> {
Some(T),
None,
}
impl<T> From<Option<T>> for OptionalValue<T> {
fn from(v: Option<T>) -> Self {
match v {
Some(arg) => OptionalValue::Some(arg),
None => OptionalValue::None,
}
}
}
impl<T> OptionalValue<T> {
pub fn into_option(self) -> Option<T> {
match self {
OptionalValue::Some(arg) => Some(arg),
OptionalValue::None => None,
}
}
pub fn is_some(&self) -> bool {
matches!(self, OptionalValue::Some(_))
}
pub fn is_none(&self) -> bool {
!self.is_some()
}
}
impl<T> TopEncodeMulti for OptionalValue<T>
where
T: TopEncodeMulti,
{
fn multi_encode_or_handle_err<O, H>(&self, output: &mut O, h: H) -> Result<(), H::HandledErr>
where
O: TopEncodeMultiOutput,
H: EncodeErrorHandler,
{
if let OptionalValue::Some(t) = self {
t.multi_encode_or_handle_err(output, h)?;
}
Ok(())
}
}
impl<T> TopDecodeMulti for OptionalValue<T>
where
T: TopDecodeMulti,
{
fn multi_decode_or_handle_err<I, H>(input: &mut I, h: H) -> Result<Self, H::HandledErr>
where
I: TopDecodeMultiInput,
H: DecodeErrorHandler,
{
if input.has_next() {
Ok(OptionalValue::Some(T::multi_decode_or_handle_err(
input, h,
)?))
} else {
Ok(OptionalValue::None)
}
}
}
impl<T> Debug for OptionalValue<T>
where
T: Debug,
{
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Some(arg0) => f.debug_tuple("Some").field(arg0).finish(),
Self::None => write!(f, "None"),
}
}
}