pub struct Validity {
pub not_before: Time,
pub not_after: Time,
}
Expand description
X.501 Validity
as defined in RFC 5280 Section 4.1.2.5
Validity ::= SEQUENCE {
notBefore Time,
notAfter Time
}
Fields§
§not_before: Time
notBefore value
not_after: Time
notAfter value
Implementations§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Validity
impl<'arbitrary> Arbitrary<'arbitrary> for Validity
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moresource§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for Validity
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for Validity
source§impl<'__der_lifetime> EncodeValue for Validity
impl<'__der_lifetime> EncodeValue for Validity
source§impl PartialEq for Validity
impl PartialEq for Validity
impl Copy for Validity
impl Eq for Validity
impl<'__der_lifetime> Sequence<'__der_lifetime> for Validity
impl StructuralEq for Validity
impl StructuralPartialEq for Validity
Auto Trait Implementations§
impl RefUnwindSafe for Validity
impl Send for Validity
impl Sync for Validity
impl Unpin for Validity
impl UnwindSafe for Validity
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<'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.