Skip to main content

Simd

Struct Simd 

Source
pub struct Simd {
    inner: GeneralPurpose,
    kind: SimdKind,
    backend: Backend,
}
Expand description

A base64 engine that uses the best SIMD instruction set detected at runtime, falling back to the scalar GeneralPurpose engine.

Requires the std feature (for runtime CPU-feature detection) and an x86_64 or aarch64 target. On other targets, use GeneralPurpose directly. Only the STANDARD and URL_SAFE alphabets are accelerated, so it is constructed with Simd::standard / Simd::url_safe.

Fields§

§inner: GeneralPurpose§kind: SimdKind§backend: Backend

Implementations§

Source§

impl Simd

Source

pub fn standard(config: GeneralPurposeConfig) -> Self

Create a Simd engine for the STANDARD alphabet, detecting the instruction set once.

Source

pub fn url_safe(config: GeneralPurposeConfig) -> Self

Create a Simd engine for the URL_SAFE alphabet, detecting the instruction set once.

Source

fn new( kind: SimdKind, alphabet: &Alphabet, config: GeneralPurposeConfig, ) -> Self

Trait Implementations§

Source§

impl Clone for Simd

Source§

fn clone(&self) -> Simd

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Simd

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Engine for Simd

Available on crate feature std and (x86-64 or AArch64) only.
Source§

type Config = GeneralPurposeConfig

The config type used by this engine
Source§

type DecodeEstimate = GeneralPurposeEstimate

The decode estimate used by this engine
Source§

fn config(&self) -> &Self::Config

Returns the config for this engine.
Source§

fn padding(&self) -> Symbol

Returns the symbol used for encode padding. Read more
Source§

fn encode<T: AsRef<[u8]>>(&self, input: T) -> String

Encode arbitrary octets as base64 using the provided Engine. Returns a String. Read more
Source§

fn encode_string<T: AsRef<[u8]>>(&self, input: T, output_buf: &mut String)

Encode arbitrary octets as base64 into a supplied String. Writes into the supplied String, which may allocate if its internal buffer isn’t big enough. Read more
Source§

fn encode_slice<T: AsRef<[u8]>>( &self, input: T, output_buf: &mut [u8], ) -> Result<usize, EncodeSliceError>

Encode arbitrary octets as base64 into a supplied slice. Writes into the supplied output buffer. Read more
Source§

fn decode<T: AsRef<[u8]>>(&self, input: T) -> Result<Vec<u8>, DecodeError>

Decode the input into a new Vec. Read more
Source§

fn decode_vec<T: AsRef<[u8]>>( &self, input: T, buffer: &mut Vec<u8>, ) -> Result<(), DecodeError>

Decode the input into the supplied buffer. Read more
Source§

fn decode_slice<T: AsRef<[u8]>>( &self, input: T, output: &mut [u8], ) -> Result<usize, DecodeSliceError>

Decode the input into the provided output slice. Read more
Source§

fn decode_slice_unchecked<T: AsRef<[u8]>>( &self, input: T, output: &mut [u8], ) -> Result<usize, DecodeError>

Decode the input into the provided output slice. Read more

Auto Trait Implementations§

§

impl Freeze for Simd

§

impl RefUnwindSafe for Simd

§

impl Send for Simd

§

impl Sync for Simd

§

impl Unpin for Simd

§

impl UnsafeUnpin for Simd

§

impl UnwindSafe for Simd

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.