pub struct Attribute {
pub oid: AttributeType,
pub values: SetOfVec<AttributeValue>,
}
Expand description
X.501 Attribute
as defined in RFC 5280 Appendix A.1.
Attribute ::= SEQUENCE {
type AttributeType,
values SET OF AttributeValue -- at least one value is required
}
Note that RFC 2986 Section 4 defines a constrained version of this type:
Attribute { ATTRIBUTE:IOSet } ::= SEQUENCE {
type ATTRIBUTE.&id({IOSet}),
values SET SIZE(1..MAX) OF ATTRIBUTE.&Type({IOSet}{@type})
}
The unconstrained version should be preferred.
Fields§
§oid: AttributeType
§values: SetOfVec<AttributeValue>
Trait Implementations§
source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for Attribute
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for Attribute
source§impl<'__der_lifetime> EncodeValue for Attribute
impl<'__der_lifetime> EncodeValue for Attribute
source§impl TryFrom<ExtensionReq> for Attribute
impl TryFrom<ExtensionReq> for Attribute
impl Eq for Attribute
impl<'__der_lifetime> Sequence<'__der_lifetime> for Attribute
impl StructuralPartialEq for Attribute
Auto Trait Implementations§
impl Freeze for Attribute
impl RefUnwindSafe for Attribute
impl Send for Attribute
impl Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.