pub type Scalar = GeneralPurpose;Expand description
A purely scalar base64 engine that never uses hardware-specific vector instructions.
This is an alias for GeneralPurpose, giving an explicit name for callers who want to
guarantee a scalar-only implementation.
Aliased Type§
pub struct Scalar {
encode_table: [u8; 64],
decode_table: [u8; 256],
pub(crate) padding: Symbol,
config: GeneralPurposeConfig,
}Fields§
§encode_table: [u8; 64]§decode_table: [u8; 256]§padding: Symbol§config: GeneralPurposeConfig