Skip to main content

Avx2

Struct Avx2 

Source
pub struct Avx2 {
    inner: GeneralPurpose,
    kind: SimdKind,
}
Expand description

A base64 engine that unconditionally uses AVX2, without runtime detection.

This works in no_std builds. Because it does not check for AVX2 support, it must only be used on a CPU that has it. Only the STANDARD and URL_SAFE alphabets are accelerated, so it is constructed with the Avx2::standard / Avx2::url_safe (checked) or Avx2::standard_unchecked / Avx2::url_safe_unchecked constructors.

Fields§

§inner: GeneralPurpose§kind: SimdKind

Implementations§

Source§

impl Avx2

Source

pub fn standard(config: GeneralPurposeConfig) -> Option<Self>

Create an Avx2 engine for the STANDARD alphabet if the running CPU supports AVX2, else None.

Requires the std feature for the detection; in no_std use Avx2::standard_unchecked.

Source

pub fn url_safe(config: GeneralPurposeConfig) -> Option<Self>

Create an Avx2 engine for the URL_SAFE alphabet if the running CPU supports AVX2, else None.

Requires the std feature for the detection; in no_std use Avx2::url_safe_unchecked.

Source

pub const unsafe fn standard_unchecked(config: GeneralPurposeConfig) -> Self

Create an Avx2 engine for the STANDARD alphabet without checking for AVX2 support.

§Safety

The CPU that will run encode/decode must support AVX2. Using the engine on a CPU without AVX2 is undefined behavior.

Source

pub const unsafe fn url_safe_unchecked(config: GeneralPurposeConfig) -> Self

Create an Avx2 engine for the URL_SAFE alphabet without checking for AVX2 support.

§Safety

The CPU that will run encode/decode must support AVX2. Using the engine on a CPU without AVX2 is undefined behavior.

Trait Implementations§

Source§

impl Clone for Avx2

Source§

fn clone(&self) -> Avx2

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 Avx2

Source§

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

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

impl Engine for Avx2

Available on x86-64 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 Avx2

§

impl RefUnwindSafe for Avx2

§

impl Send for Avx2

§

impl Sync for Avx2

§

impl Unpin for Avx2

§

impl UnsafeUnpin for Avx2

§

impl UnwindSafe for Avx2

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.