#[repr(u64)]
pub enum AttributeType {
Show 106 variants Class, Token, Private, Label, Application, Value, ObjectId, CertificateType, Issuer, SerialNumber, AcIssuer, Owner, AttrTypes, Trusted, CertificateCategory, JavaMidpSecurityDomain, Url, HashOfSubjectPublicKey, HashOfIssuerPublicKey, NameHashAlgorithm, CheckValue, KeyType, Subject, Id, Sensitive, Encrypt, Decrypt, Wrap, Unwrap, Sign, SignRecover, Verify, VerifyRecover, Derive, StartDate, EndDate, Modulus, ModulusBits, PublicExponent, PrivateExponent, Prime1, Prime2, Exponent1, Exponent2, Coefficient, PublicKeyInfo, Prime, Subprime, Base, PrimeBits, SubPrimeBits, ValueBits, ValueLen, Extractable, Local, NeverExtractable, AlwaysSensitive, KeyGenMechanism, Modifiable, Copyable, Destroyable, EcParams, EcPoint, SecondaryAuth, AuthPinFlags, AlwaysAuthenticate, WrapWithTrusted, OtpFormat, OtpLength, OtpTimeInterval, OtpUserFriendlyMode, OtpChallengeRequirement, OtpTimeRequirement, OtpCounterRequirement, OtpPinRequirement, OtpUserIdentifier, OtpServiceIdentifier, OtpServiceLogo, OtpServiceLogoType, OtpCounter, OtpTime, Gostr3410Params, Gostr3411Params, Gost28147Params, HwFeatureType, ResetOnInit, HasReset, PixelX, PixelY, Resolution, CharRows, CharColumns, Color, BitsPerPixel, CharSets, EncodingMethods, MimeTypes, MechanismType, RequiredCmsAttributes, DefaultCmsAttributes, SupportedCmsAttributes, WrapTemplate, UnwrapTemplate, DeriveTemplate, AllowedMechanisms, UnknownAttributeType(u64),
}

Variants§

§

Class

§

Token

§

Private

§

Label

§

Application

§

Value

§

ObjectId

§

CertificateType

§

Issuer

§

SerialNumber

§

AcIssuer

§

Owner

§

AttrTypes

§

Trusted

§

CertificateCategory

§

JavaMidpSecurityDomain

§

Url

§

HashOfSubjectPublicKey

§

HashOfIssuerPublicKey

§

NameHashAlgorithm

§

CheckValue

§

KeyType

§

Subject

§

Id

§

Sensitive

§

Encrypt

§

Decrypt

§

Wrap

§

Unwrap

§

Sign

§

SignRecover

§

Verify

§

VerifyRecover

§

Derive

§

StartDate

§

EndDate

§

Modulus

§

ModulusBits

§

PublicExponent

§

PrivateExponent

§

Prime1

§

Prime2

§

Exponent1

§

Exponent2

§

Coefficient

§

PublicKeyInfo

§

Prime

§

Subprime

§

Base

§

PrimeBits

§

SubPrimeBits

§

ValueBits

§

ValueLen

§

Extractable

§

Local

§

NeverExtractable

§

AlwaysSensitive

§

KeyGenMechanism

§

Modifiable

§

Copyable

§

Destroyable

§

EcParams

§

EcPoint

§

SecondaryAuth

§

AuthPinFlags

§

AlwaysAuthenticate

§

WrapWithTrusted

§

OtpFormat

§

OtpLength

§

OtpTimeInterval

§

OtpUserFriendlyMode

§

OtpChallengeRequirement

§

OtpTimeRequirement

§

OtpCounterRequirement

§

OtpPinRequirement

§

OtpUserIdentifier

§

OtpServiceIdentifier

§

OtpServiceLogoType

§

OtpCounter

§

OtpTime

§

Gostr3410Params

§

Gostr3411Params

§

Gost28147Params

§

HwFeatureType

§

ResetOnInit

§

HasReset

§

PixelX

§

PixelY

§

Resolution

§

CharRows

§

CharColumns

§

Color

§

BitsPerPixel

§

CharSets

§

EncodingMethods

§

MimeTypes

§

MechanismType

§

RequiredCmsAttributes

§

DefaultCmsAttributes

§

SupportedCmsAttributes

§

WrapTemplate

§

UnwrapTemplate

§

DeriveTemplate

§

AllowedMechanisms

§

UnknownAttributeType(u64)

Trait Implementations§

source§

impl Clone for AttributeType

source§

fn clone(&self) -> AttributeType

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 AttributeType

source§

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

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

impl<'de> Deserialize<'de> for AttributeType

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 Display for AttributeType

source§

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

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

impl From<AttributeType> for AttributeType

source§

fn from(val: AttributeType) -> Self

Converts to this type from the input type.
source§

impl From<AttributeType> for u64

source§

fn from(enum_value: AttributeType) -> Self

Converts to this type from the input type.
source§

impl From<u64> for AttributeType

source§

fn from(number: u64) -> Self

Converts to this type from the input type.
source§

impl FromPrimitive for AttributeType

§

type Primitive = u64

source§

fn from_primitive(number: Self::Primitive) -> Self

source§

impl FromStr for AttributeType

§

type Err = ParseError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<AttributeType, <Self as FromStr>::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for AttributeType

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 IntoEnumIterator for AttributeType

§

type Iterator = AttributeTypeIter

source§

fn iter() -> AttributeTypeIter

source§

impl PartialEq<AttributeType> for AttributeType

source§

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

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<&str> for AttributeType

§

type Error = ParseError

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

fn try_from(s: &str) -> Result<AttributeType, <Self as TryFrom<&str>>::Error>

Performs the conversion.
source§

impl TryFrom<AttributeType> for AttributeType

§

type Error = Error

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

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

Performs the conversion.
source§

impl Copy for AttributeType

source§

impl Eq for AttributeType

source§

impl StructuralEq for AttributeType

source§

impl StructuralPartialEq for AttributeType

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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>,