pub struct Optional<T>(pub T);
Expand description

Wrapper for ASN.1 optionals fields

Wrapped type has to implement the Default trait to be deserializable (on deserialization failure a default value is returned).

Examples:

use picky_asn1::wrapper::{Optional, ExplicitContextTag0};
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, PartialEq)]
struct MyWrapper(u8);

impl Default for MyWrapper {
    fn default() -> Self {
        Self(10)
    }
}

#[derive(Serialize, Deserialize, Debug, PartialEq)]
struct ComplexType {
    // skip if default to reduce encoded size
    #[serde(skip_serializing_if = "optional_field_is_default")]
    optional_field: Optional<MyWrapper>,
    // behind application tag 0 to distinguish from optional_field that is a ASN.1 integer too.
    explicit_field: ExplicitContextTag0<u8>,
}

fn optional_field_is_default(wrapper: &Optional<MyWrapper>) -> bool {
    wrapper.0 == MyWrapper::default()
}

let complex_type = ComplexType {
    optional_field: MyWrapper::default().into(),
    explicit_field: 5.into(),
};

let buffer = [
    0x30, 0x05, // sequence
    // optional field isn't present
    0xA0, 0x03, 0x02, 0x01, 0x05, // explicit field
];

let encoded = picky_asn1_der::to_vec(&complex_type).expect("couldn't serialize");
assert_eq!(
    encoded,
    buffer,
);

let decoded: ComplexType = picky_asn1_der::from_bytes(&buffer).expect("couldn't deserialize");
assert_eq!(
    decoded,
    complex_type,
);

Tuple Fields§

§0: T

Implementations§

source§

impl<T> Optional<T>where T: Default + PartialEq,

source

pub fn is_default(&self) -> bool

Trait Implementations§

source§

impl<T: Clone> Clone for Optional<T>

source§

fn clone(&self) -> Optional<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug> Debug for Optional<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default> Default for Optional<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Deref for Optional<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T> DerefMut for Optional<T>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<'de, T> Deserialize<'de> for Optional<T>where T: Deserialize<'de> + Default,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> From<T> for Optional<T>

source§

fn from(wrapped: T) -> Self

Converts to this type from the input type.
source§

impl<T: Hash> Hash for Optional<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T: PartialEq> PartialEq<Optional<T>> for Optional<T>

source§

fn eq(&self, other: &Optional<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> PartialEq<T> for Optional<T>where T: PartialEq,

source§

fn eq(&self, other: &T) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd> PartialOrd<Optional<T>> for Optional<T>

source§

fn partial_cmp(&self, other: &Optional<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T> Serialize for Optional<T>where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Eq> Eq for Optional<T>

source§

impl<T> StructuralEq for Optional<T>

source§

impl<T> StructuralPartialEq for Optional<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Optional<T>where T: RefUnwindSafe,

§

impl<T> Send for Optional<T>where T: Send,

§

impl<T> Sync for Optional<T>where T: Sync,

§

impl<T> Unpin for Optional<T>where T: Unpin,

§

impl<T> UnwindSafe for Optional<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,