Struct der::asn1::OctetString
source · pub struct OctetString { /* private fields */ }
Expand description
ASN.1 OCTET STRING
type: owned form..
Octet strings represent contiguous sequences of octets, a.k.a. bytes.
This type provides the same functionality as OctetStringRef
but owns
the backing data.
Implementations§
source§impl OctetString
impl OctetString
sourcepub fn into_bytes(self) -> Vec<u8>
pub fn into_bytes(self) -> Vec<u8>
Take ownership of the octet string.
Trait Implementations§
source§impl AsRef<[u8]> for OctetString
impl AsRef<[u8]> for OctetString
source§impl Clone for OctetString
impl Clone for OctetString
source§fn clone(&self) -> OctetString
fn clone(&self) -> OctetString
Returns a copy of the value. Read more
1.0.0 · 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 OctetString
impl Debug for OctetString
source§impl<'a> DecodeValue<'a> for OctetString
impl<'a> DecodeValue<'a> for OctetString
source§impl EncodeValue for OctetString
impl EncodeValue for OctetString
source§impl<'a> From<&'a OctetString> for OctetStringRef<'a>
impl<'a> From<&'a OctetString> for OctetStringRef<'a>
source§fn from(octet_string: &'a OctetString) -> OctetStringRef<'a>
fn from(octet_string: &'a OctetString) -> OctetStringRef<'a>
Converts to this type from the input type.
source§impl Ord for OctetString
impl Ord for OctetString
source§fn cmp(&self, other: &OctetString) -> Ordering
fn cmp(&self, other: &OctetString) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl OwnedToRef for OctetString
impl OwnedToRef for OctetString
§type Borrowed<'a> = OctetStringRef<'a>
type Borrowed<'a> = OctetStringRef<'a>
The resulting type referencing back to Self
source§fn owned_to_ref(&self) -> Self::Borrowed<'_>
fn owned_to_ref(&self) -> Self::Borrowed<'_>
Creates a new object referencing back to the self for storage
source§impl PartialEq for OctetString
impl PartialEq for OctetString
source§fn eq(&self, other: &OctetString) -> bool
fn eq(&self, other: &OctetString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for OctetString
impl PartialOrd for OctetString
source§fn partial_cmp(&self, other: &OctetString) -> Option<Ordering>
fn partial_cmp(&self, other: &OctetString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<'__der> TryFrom<&'__der Any> for OctetString
impl<'__der> TryFrom<&'__der Any> for OctetString
source§impl<'__der> TryFrom<AnyRef<'__der>> for OctetString
impl<'__der> TryFrom<AnyRef<'__der>> for OctetString
impl Eq for OctetString
impl StructuralPartialEq for OctetString
Auto Trait Implementations§
impl Freeze for OctetString
impl RefUnwindSafe for OctetString
impl Send for OctetString
impl Sync for OctetString
impl Unpin for OctetString
impl UnwindSafe for OctetString
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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]>
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.