Struct ed25519_dalek::pkcs8::spki::der::asn1::SequenceRef
pub struct SequenceRef<'a> { /* private fields */ }
Available on crate feature
pkcs8
only.Expand description
The SequenceRef
type provides raw access to the octets which comprise a
DER-encoded SEQUENCE
.
This is a zero-copy reference type which borrows from the input data.
Trait Implementations§
§impl<'a> DecodeValue<'a> for SequenceRef<'a>
impl<'a> DecodeValue<'a> for SequenceRef<'a>
§fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<SequenceRef<'a>, Error>where
R: Reader<'a>,
fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<SequenceRef<'a>, Error>where
R: Reader<'a>,
Attempt to decode this message using the provided
Reader
.§impl EncodeValue for SequenceRef<'_>
impl EncodeValue for SequenceRef<'_>
impl<'a> Sequence<'a> for SequenceRef<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SequenceRef<'a>
impl<'a> Send for SequenceRef<'a>
impl<'a> Sync for SequenceRef<'a>
impl<'a> Unpin for SequenceRef<'a>
impl<'a> UnwindSafe for SequenceRef<'a>
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 T
impl<'a, T> Choice<'a> for T
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§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.