Struct base64ct::Base64Bcrypt
source · pub struct Base64Bcrypt;
Expand description
bcrypt Base64 encoding.
./ [A-Z] [a-z] [0-9]
0x2e-0x2f, 0x41-0x5a, 0x61-0x7a, 0x30-0x39
Trait Implementations§
source§impl Clone for Base64Bcrypt
impl Clone for Base64Bcrypt
source§fn clone(&self) -> Base64Bcrypt
fn clone(&self) -> Base64Bcrypt
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 Base64Bcrypt
impl Debug for Base64Bcrypt
source§impl PartialEq for Base64Bcrypt
impl PartialEq for Base64Bcrypt
source§fn eq(&self, other: &Base64Bcrypt) -> bool
fn eq(&self, other: &Base64Bcrypt) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Base64Bcrypt
impl Eq for Base64Bcrypt
impl StructuralPartialEq for Base64Bcrypt
Auto Trait Implementations§
impl Freeze for Base64Bcrypt
impl RefUnwindSafe for Base64Bcrypt
impl Send for Base64Bcrypt
impl Sync for Base64Bcrypt
impl Unpin for Base64Bcrypt
impl UnwindSafe for Base64Bcrypt
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<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Encoding for Twhere
T: Alphabet,
impl<T> Encoding for Twhere
T: Alphabet,
source§fn decode(src: impl AsRef<[u8]>, dst: &mut [u8]) -> Result<&[u8], Error>
fn decode(src: impl AsRef<[u8]>, dst: &mut [u8]) -> Result<&[u8], Error>
Decode a Base64 string into the provided destination buffer.
source§fn decode_in_place(buf: &mut [u8]) -> Result<&[u8], InvalidEncodingError>
fn decode_in_place(buf: &mut [u8]) -> Result<&[u8], InvalidEncodingError>
Decode a Base64 string in-place. Read more
source§fn decode_vec(input: &str) -> Result<Vec<u8>, Error>
fn decode_vec(input: &str) -> Result<Vec<u8>, Error>
Decode a Base64 string into a byte vector.
source§fn encode<'a>(
src: &[u8],
dst: &'a mut [u8],
) -> Result<&'a str, InvalidLengthError>
fn encode<'a>( src: &[u8], dst: &'a mut [u8], ) -> Result<&'a str, InvalidLengthError>
Encode the input byte slice as Base64. Read more