pub struct FillCorners<F: Fn(usize, usize) -> [usize; 2]>(/* private fields */);Expand description
Guarantee that the first amt(count, len)[0] samples and the last amt(count, len)[1] samples are taken.
A small amount of linear backfill (2-4% of the length of the schedule) can improve the quality of a schedule.
L. E. Cullen, A. Marchiori, D. Rovnyak, Magn Reson Chem 2023, 61(6), 337. https://doi.org/10.1002/mrc.5340
Can be used as the .fill_corners() method.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for FillCorners<F>where
F: Freeze,
impl<F> RefUnwindSafe for FillCorners<F>where
F: RefUnwindSafe,
impl<F> Send for FillCorners<F>where
F: Send,
impl<F> Sync for FillCorners<F>where
F: Sync,
impl<F> Unpin for FillCorners<F>where
F: Unpin,
impl<F> UnwindSafe for FillCorners<F>where
F: UnwindSafe,
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