pub struct Base<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> { /* private fields */ }
Expand description
A compile-time configurable radix-based encoding scheme.
This struct defines the core behavior for various base encodings,
including Base16
, Base32
and Base64
.
It is configurable via const generics to support different encoding behaviors, such as lookup tables, padding, and case insensitivity.
§Type Parameters
RADIX
: The numeric radix of the encoding (e.g., 16, 32, 64).LUT
: Whether to use a lookup table (true
) for fast decoding or a linear search (false
) using less memory.PAD
: Whether to use padding (=
) for encoding output (used in Base32/Base64).CASE
: Whether decoding should be case-insensitive (e.g.,true
for Crockford Base32).CODE
: A marker type defining the specific encoding scheme (e.g.,Rfc4648
,Crockford
).
Implementations§
Source§impl<const PAD: bool, const CASE: bool> Base<16, false, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<16, false, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<16, true, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<16, true, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Crockford>
impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Crockford>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Crockford>
impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Crockford>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Rfc4648Hex>
impl<const PAD: bool, const CASE: bool> Base<32, false, PAD, CASE, Rfc4648Hex>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648Hex>
impl<const PAD: bool, const CASE: bool> Base<32, true, PAD, CASE, Rfc4648Hex>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<64, false, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<64, false, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const PAD: bool, const CASE: bool> Base<64, true, PAD, CASE, Rfc4648>
impl<const PAD: bool, const CASE: bool> Base<64, true, PAD, CASE, Rfc4648>
Sourcepub const fn encoded_len(input_len: usize) -> usize
pub const fn encoded_len(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn encoded_len_padded(input_len: usize) -> usize
pub const fn encoded_len_padded(input_len: usize) -> usize
Returns the required output buffer size for encoding input_len
bytes.
Sourcepub const fn decoded_len(input_len: usize) -> usize
pub const fn decoded_len(input_len: usize) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Sourcepub const fn decoded_len_stripped(input: &[u8]) -> usize
pub const fn decoded_len_stripped(input: &[u8]) -> usize
Returns the required output buffer size for decoding input_len
Base32 characters.
Strips the padding. Otherwise decoded_len
will calculate for the worst case.
Sourcepub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
pub const fn decode_from_slice(input: &[u8], output: &mut [u8]) -> Option<usize> ⓘ
Decodes input
into output
, returning the number of bytes written.
Uses a LUT when DEC_TABLE = true
, otherwise falls back to linear search.
Returns None
if it finds an invalid byte.
§Panics
Panics if output
is too small.
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Base<RADIX, LUT, PAD, CASE, CODE>
§misc. methods
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Base<RADIX, LUT, PAD, CASE, CODE>
§misc. methods
Sourcepub const fn with_radix<const NEW_RADIX: usize>(
self,
) -> Base<NEW_RADIX, LUT, PAD, CASE, CODE>
pub const fn with_radix<const NEW_RADIX: usize>( self, ) -> Base<NEW_RADIX, LUT, PAD, CASE, CODE>
Change the radix while keeping everything else the same.
Sourcepub const fn with_lut<const NEW_LUT: bool>(
self,
) -> Base<RADIX, NEW_LUT, PAD, CASE, CODE>
pub const fn with_lut<const NEW_LUT: bool>( self, ) -> Base<RADIX, NEW_LUT, PAD, CASE, CODE>
Toggle LUT usage while keeping everything else the same.
Sourcepub const fn with_pad<const NEW_PAD: bool>(
self,
) -> Base<RADIX, LUT, NEW_PAD, CASE, CODE>
pub const fn with_pad<const NEW_PAD: bool>( self, ) -> Base<RADIX, LUT, NEW_PAD, CASE, CODE>
Toggle padding while keeping everything else the same.
Sourcepub const fn with_case<const NEW_CASE: bool>(
self,
) -> Base<RADIX, LUT, PAD, NEW_CASE, CODE>
pub const fn with_case<const NEW_CASE: bool>( self, ) -> Base<RADIX, LUT, PAD, NEW_CASE, CODE>
Change the case sensitivity while keeping everything else the same.
Sourcepub const fn with_encoding<NewCode>(
self,
) -> Base<RADIX, LUT, PAD, CASE, NewCode>
pub const fn with_encoding<NewCode>( self, ) -> Base<RADIX, LUT, PAD, CASE, NewCode>
Change the encoding scheme while keeping everything else the same.
Trait Implementations§
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Clone> Clone for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Clone> Clone for Base<RADIX, LUT, PAD, CASE, CODE>
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> ConstDefault for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> ConstDefault for Base<RADIX, LUT, PAD, CASE, CODE>
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Debug> Debug for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Debug> Debug for Base<RADIX, LUT, PAD, CASE, CODE>
Source§impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Default for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Default for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE: Copy> Copy for Base<RADIX, LUT, PAD, CASE, CODE>
Auto Trait Implementations§
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Freeze for Base<RADIX, LUT, PAD, CASE, CODE>
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> RefUnwindSafe for Base<RADIX, LUT, PAD, CASE, CODE>where
CODE: RefUnwindSafe,
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Send for Base<RADIX, LUT, PAD, CASE, CODE>where
CODE: Send,
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Sync for Base<RADIX, LUT, PAD, CASE, CODE>where
CODE: Sync,
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> Unpin for Base<RADIX, LUT, PAD, CASE, CODE>where
CODE: Unpin,
impl<const RADIX: usize, const LUT: bool, const PAD: bool, const CASE: bool, CODE> UnwindSafe for Base<RADIX, LUT, PAD, CASE, CODE>where
CODE: UnwindSafe,
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more