pub struct AffineAccess {
pub coefficients: SmallVec<[(LoopId, i64); 4]>,
pub offset: i64,
}Expand description
Affine memory access pattern.
Fields§
§coefficients: SmallVec<[(LoopId, i64); 4]>Coefficients for each loop variable.
offset: i64Constant offset.
Trait Implementations§
Source§impl Clone for AffineAccess
impl Clone for AffineAccess
Source§fn clone(&self) -> AffineAccess
fn clone(&self) -> AffineAccess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AffineAccess
impl Debug for AffineAccess
Source§impl<'de> Deserialize<'de> for AffineAccess
impl<'de> Deserialize<'de> for AffineAccess
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AffineAccess
impl PartialEq for AffineAccess
Source§fn eq(&self, other: &AffineAccess) -> bool
fn eq(&self, other: &AffineAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AffineAccess
impl Serialize for AffineAccess
impl Eq for AffineAccess
impl StructuralPartialEq for AffineAccess
Auto Trait Implementations§
impl Freeze for AffineAccess
impl RefUnwindSafe for AffineAccess
impl Send for AffineAccess
impl Sync for AffineAccess
impl Unpin for AffineAccess
impl UnsafeUnpin for AffineAccess
impl UnwindSafe for AffineAccess
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