pub enum AttrData {
    None,
    Bool(bool),
    Ulong(u64),
    CertificateType(CertificateType),
    KeyType(KeyType),
    MechanismType(MechanismType),
    ObjectClass(ObjectClass),
    Redacted(Redacted),
    Str(String),
    List(Vec<AttrData>),
}

Variants§

§

None

§

Bool(bool)

§

Ulong(u64)

§

CertificateType(CertificateType)

§

KeyType(KeyType)

§

MechanismType(MechanismType)

§

ObjectClass(ObjectClass)

§

Redacted(Redacted)

§

Str(String)

§

List(Vec<AttrData>)

Implementations§

source§

impl AttrData

source

pub fn is_none(&self) -> bool

source

pub fn from_ascii_bytes(v: &[u8]) -> Self

source

pub fn try_str(&self) -> Result<&str, AttributeError>

Trait Implementations§

source§

impl Clone for AttrData

source§

fn clone(&self) -> AttrData

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 Debug for AttrData

source§

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

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

impl Default for AttrData

source§

fn default() -> AttrData

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

impl<'de> Deserialize<'de> for AttrData

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 From<&[u8]> for AttrData

source§

fn from(v: &[u8]) -> Self

Converts to this type from the input type.
source§

impl From<CertificateType> for AttrData

source§

fn from(val: CertificateType) -> Self

Converts to this type from the input type.
source§

impl From<KeyType> for AttrData

source§

fn from(val: KeyType) -> Self

Converts to this type from the input type.
source§

impl From<MechanismType> for AttrData

source§

fn from(val: MechanismType) -> Self

Converts to this type from the input type.
source§

impl From<ObjectClass> for AttrData

source§

fn from(val: ObjectClass) -> Self

Converts to this type from the input type.
source§

impl From<Ulong> for AttrData

source§

fn from(v: Ulong) -> Self

Converts to this type from the input type.
source§

impl From<bool> for AttrData

source§

fn from(v: bool) -> Self

Converts to this type from the input type.
source§

impl From<u64> for AttrData

source§

fn from(v: u64) -> Self

Converts to this type from the input type.
source§

impl PartialEq<AttrData> for AttrData

source§

fn eq(&self, other: &AttrData) -> 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 Serialize for AttrData

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 TryFrom<&AttrData> for CertificateType

§

type Error = AttributeError

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

fn try_from(val: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for Date

§

type Error = AttributeError

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

fn try_from(val: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for KeyType

§

type Error = AttributeError

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

fn try_from(val: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for MechanismType

§

type Error = AttributeError

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

fn try_from(val: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for ObjectClass

§

type Error = AttributeError

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

fn try_from(val: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for Ulong

§

type Error = AttributeError

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

fn try_from(a: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for Vec<u8>

§

type Error = AttributeError

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

fn try_from(a: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for bool

§

type Error = AttributeError

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

fn try_from(a: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&AttrData> for u64

§

type Error = AttributeError

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

fn try_from(a: &AttrData) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Eq for AttrData

source§

impl StructuralEq for AttrData

source§

impl StructuralPartialEq for AttrData

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Annotate for Twhere T: Serialize + ?Sized,

§

default fn format( &self, _variant: Option<&str>, _field: &MemberId<'_> ) -> Option<Format>

§

default fn comment( &self, _variant: Option<&str>, _field: &MemberId<'_> ) -> Option<String>

§

default fn as_annotate(&self) -> Option<&dyn Annotate>

§

default fn thunk_serialize( &self, serializer: &mut AnnotatedSerializer<'_> ) -> Result<Document, Error>

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
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

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