pub struct VectorEngine {
pub lmul: Lmul,
pub vlen: Vlen,
pub sew: BaseSew,
pub tail_elements: MaskBehavior,
pub inactive_elements: MaskBehavior,
}Fields§
§lmul: Lmul§vlen: Vlen§sew: BaseSew§tail_elements: MaskBehavior§inactive_elements: MaskBehaviorImplementations§
Source§impl VectorEngine
impl VectorEngine
pub fn new( lmul: Lmul, vlen: Vlen, sew: BaseSew, tail_elements: MaskBehavior, inactive_elements: MaskBehavior, ) -> Self
Trait Implementations§
Source§impl Clone for VectorEngine
impl Clone for VectorEngine
Source§fn clone(&self) -> VectorEngine
fn clone(&self) -> VectorEngine
Returns a duplicate 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 VectorEngine
impl Debug for VectorEngine
Source§impl Default for VectorEngine
impl Default for VectorEngine
Source§fn default() -> VectorEngine
fn default() -> VectorEngine
Returns the “default value” for a type. Read more
Source§impl PartialEq for VectorEngine
impl PartialEq for VectorEngine
Source§impl Snapshotable for VectorEngine
impl Snapshotable for VectorEngine
impl Copy for VectorEngine
impl StructuralPartialEq for VectorEngine
Auto Trait Implementations§
impl Freeze for VectorEngine
impl RefUnwindSafe for VectorEngine
impl Send for VectorEngine
impl Sync for VectorEngine
impl Unpin for VectorEngine
impl UnwindSafe for VectorEngine
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§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>
Converts
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>
Converts
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