pub struct EncryptedData(/* private fields */);Implementations§
Trait Implementations§
Source§impl AsRef<[u8]> for EncryptedData
impl AsRef<[u8]> for EncryptedData
Source§impl Clone for EncryptedData
impl Clone for EncryptedData
Source§fn clone(&self) -> EncryptedData
fn clone(&self) -> EncryptedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncryptedData
impl Debug for EncryptedData
Source§impl Display for EncryptedData
impl Display for EncryptedData
Source§impl From<EncryptedData> for Vec<u8>
impl From<EncryptedData> for Vec<u8>
Source§fn from(data: EncryptedData) -> Self
fn from(data: EncryptedData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EncryptedData
impl PartialEq for EncryptedData
Source§fn eq(&self, other: &EncryptedData) -> bool
fn eq(&self, other: &EncryptedData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EncryptedData
impl StructuralPartialEq for EncryptedData
Auto Trait Implementations§
impl Freeze for EncryptedData
impl RefUnwindSafe for EncryptedData
impl Send for EncryptedData
impl Sync for EncryptedData
impl Unpin for EncryptedData
impl UnsafeUnpin for EncryptedData
impl UnwindSafe for EncryptedData
Blanket Implementations§
Source§impl<T> Base32Len for T
impl<T> Base32Len for T
Source§fn base32_len(&self) -> usize
fn base32_len(&self) -> usize
Calculate the base32 serialized length
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> CheckBase32<Vec<u5>> for T
impl<T> CheckBase32<Vec<u5>> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToBase32 for T
impl<T> ToBase32 for T
Source§fn write_base32<W>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err>where
W: WriteBase32,
fn write_base32<W>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err>where
W: WriteBase32,
Encode as base32 and write it to the supplied writer
Implementations shouldn’t allocate.