pub enum ReadingStrategy {
Cyclic,
Strided,
Tilewise,
AsyncCyclic,
AsyncStrided,
Tma,
}Expand description
Which reader to use in simple algorithms
Variants§
Trait Implementations§
Source§impl Clone for ReadingStrategy
impl Clone for ReadingStrategy
Source§fn clone(&self) -> ReadingStrategy
fn clone(&self) -> ReadingStrategy
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 ReadingStrategy
impl Debug for ReadingStrategy
Source§impl Display for ReadingStrategy
impl Display for ReadingStrategy
impl Copy for ReadingStrategy
Auto Trait Implementations§
impl Freeze for ReadingStrategy
impl RefUnwindSafe for ReadingStrategy
impl Send for ReadingStrategy
impl Sync for ReadingStrategy
impl Unpin for ReadingStrategy
impl UnwindSafe for ReadingStrategy
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