pub struct SignedAttributesDer(_, _);
Implementations§
source§impl SignedAttributesDer
impl SignedAttributesDer
pub fn new(sa: SignedAttributes, tag: Option<Tag>) -> Self
Trait Implementations§
source§impl Values for SignedAttributesDer
impl Values for SignedAttributesDer
source§fn encoded_len(&self, _: Mode) -> usize
fn encoded_len(&self, _: Mode) -> usize
Returns the length of the encoded values for the given mode.
source§fn write_encoded<W: Write>(&self, _: Mode, target: &mut W) -> Result<(), Error>
fn write_encoded<W: Write>(&self, _: Mode, target: &mut W) -> Result<(), Error>
Encodes the values in the given mode and writes them to
target
.source§fn explicit(self, tag: Tag) -> Constructed<Self>where
Self: Sized,
fn explicit(self, tag: Tag) -> Constructed<Self>where
Self: Sized,
Converts the encoder into one with an explicit tag.
source§fn to_captured(&self, mode: Mode) -> Captured
fn to_captured(&self, mode: Mode) -> Captured
Captures the encoded values in the given mode.