#[repr(u8)]pub enum CtlVersion {
V1 = 0,
}Expand description
Version identifier for CertificateTrustList.
CTLVersion ::= INTEGER {v1(0)}Variants§
V1 = 0
CtlVersion 1 (default)
Trait Implementations§
Source§impl Clone for CtlVersion
impl Clone for CtlVersion
Source§fn clone(&self) -> CtlVersion
fn clone(&self) -> CtlVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CtlVersion
impl Debug for CtlVersion
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CtlVersion
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for CtlVersion
Source§impl Default for CtlVersion
impl Default for CtlVersion
Source§fn default() -> CtlVersion
fn default() -> CtlVersion
Returns the “default value” for a type. Read more
Source§impl EncodeValue for CtlVersion
impl EncodeValue for CtlVersion
Source§impl PartialEq for CtlVersion
impl PartialEq for CtlVersion
Source§impl TryFrom<u8> for CtlVersion
impl TryFrom<u8> for CtlVersion
impl Copy for CtlVersion
impl Eq for CtlVersion
impl StructuralPartialEq for CtlVersion
Auto Trait Implementations§
impl Freeze for CtlVersion
impl RefUnwindSafe for CtlVersion
impl Send for CtlVersion
impl Sync for CtlVersion
impl Unpin for CtlVersion
impl UnwindSafe for CtlVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more