Struct pkcs7::data_content::DataContent
source · [−]pub struct DataContent<'a> {
pub content: &'a [u8],
}
Expand description
The content that is just an octet string.
Fields
content: &'a [u8]
content bytes
Trait Implementations
sourceimpl AsRef<[u8]> for DataContent<'_>
impl AsRef<[u8]> for DataContent<'_>
sourceimpl<'a> Clone for DataContent<'a>
impl<'a> Clone for DataContent<'a>
sourcefn clone(&self) -> DataContent<'a>
fn clone(&self) -> DataContent<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for DataContent<'a>
impl<'a> Debug for DataContent<'a>
sourceimpl<'a> DecodeValue<'a> for DataContent<'a>
impl<'a> DecodeValue<'a> for DataContent<'a>
sourcefn decode_value(
decoder: &mut Decoder<'a>,
length: Length
) -> Result<DataContent<'a>>
fn decode_value(
decoder: &mut Decoder<'a>,
length: Length
) -> Result<DataContent<'a>>
Attempt to decode this message using the provided Decoder
.
sourceimpl<'a> EncodeValue for DataContent<'a>
impl<'a> EncodeValue for DataContent<'a>
sourceimpl<'a> From<&'a [u8]> for DataContent<'a>
impl<'a> From<&'a [u8]> for DataContent<'a>
sourcefn from(bytes: &'a [u8]) -> DataContent<'a>
fn from(bytes: &'a [u8]) -> DataContent<'a>
Converts to this type from the input type.
sourceimpl<'a> From<DataContent<'a>> for &'a [u8]
impl<'a> From<DataContent<'a>> for &'a [u8]
sourcefn from(data: DataContent<'a>) -> &'a [u8]
fn from(data: DataContent<'a>) -> &'a [u8]
Converts to this type from the input type.
sourceimpl<'a> PartialEq<DataContent<'a>> for DataContent<'a>
impl<'a> PartialEq<DataContent<'a>> for DataContent<'a>
sourcefn eq(&self, other: &DataContent<'a>) -> bool
fn eq(&self, other: &DataContent<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DataContent<'a>) -> bool
fn ne(&self, other: &DataContent<'a>) -> bool
This method tests for !=
.
impl<'a> Copy for DataContent<'a>
impl<'a> Eq for DataContent<'a>
impl<'a> StructuralEq for DataContent<'a>
impl<'a> StructuralPartialEq for DataContent<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for DataContent<'a>
impl<'a> Send for DataContent<'a>
impl<'a> Sync for DataContent<'a>
impl<'a> Unpin for DataContent<'a>
impl<'a> UnwindSafe for DataContent<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
impl<'a, T> Choice<'a> for T where
T: Decodable<'a> + FixedTag,
sourcefn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided Tag
decodable as a variant of this CHOICE
?