pub struct EdiPartyName {
pub name_assigner: Option<DirectoryString>,
pub party_name: DirectoryString,
}Expand description
EDIPartyName as defined in RFC 5280 Section 4.2.1.6.
EDIPartyName ::= SEQUENCE {
nameAssigner [0] DirectoryString OPTIONAL,
partyName [1] DirectoryString
}Note that although the module uses IMPLICIT tagging, these tags are
EXPLICIT because of X.680-2015 31.2.7 (c):
c) the "Tag Type" alternative is used and the value of "TagDefault" for
the module is IMPLICIT TAGS or AUTOMATIC TAGS, but the type defined by
"Type" is an untagged choice type, an untagged open type, or an untagged
"DummyReference" (see Rec. ITU-T X.683 | ISO/IEC 8824-4, 8.3).See this OpenSSL bug for more details.
Fields§
§name_assigner: Option<DirectoryString>§party_name: DirectoryStringTrait Implementations§
Source§impl Clone for EdiPartyName
impl Clone for EdiPartyName
Source§fn clone(&self) -> EdiPartyName
fn clone(&self) -> EdiPartyName
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EdiPartyName
impl Debug for EdiPartyName
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for EdiPartyName
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for EdiPartyName
Source§fn decode_value<R: Reader<'__der_lifetime>>(
reader: &mut R,
header: Header,
) -> Result<Self>
fn decode_value<R: Reader<'__der_lifetime>>( reader: &mut R, header: Header, ) -> Result<Self>
Attempt to decode this message using the provided [
Reader].Source§impl<'__der_lifetime> EncodeValue for EdiPartyName
impl<'__der_lifetime> EncodeValue for EdiPartyName
Source§impl PartialEq for EdiPartyName
impl PartialEq for EdiPartyName
Source§fn eq(&self, other: &EdiPartyName) -> bool
fn eq(&self, other: &EdiPartyName) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ValueOrd for EdiPartyName
impl ValueOrd for EdiPartyName
impl Eq for EdiPartyName
impl<'__der_lifetime> Sequence<'__der_lifetime> for EdiPartyName
impl StructuralPartialEq for EdiPartyName
Auto Trait Implementations§
impl Freeze for EdiPartyName
impl RefUnwindSafe for EdiPartyName
impl Send for EdiPartyName
impl Sync for EdiPartyName
impl Unpin for EdiPartyName
impl UnsafeUnpin for EdiPartyName
impl UnwindSafe for EdiPartyName
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
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided [
Tag] decodable as a variant of this CHOICE?Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
impl<T> DerOrd for Twhere
T: EncodeValue + ValueOrd + Tagged,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§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.
§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].
§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.
§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.