Struct der::asn1::SequenceRef
source · pub struct SequenceRef<'a> { /* private fields */ }
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§
source§impl<'a> DecodeValue<'a> for SequenceRef<'a>
impl<'a> DecodeValue<'a> for SequenceRef<'a>
source§impl EncodeValue for SequenceRef<'_>
impl EncodeValue for SequenceRef<'_>
Auto Trait Implementations§
impl<'a> Freeze for SequenceRef<'a>
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§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> Choice<'a> for T
impl<'a, T> Choice<'a> for T
source§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<'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 dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn 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]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
source§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.