struct ChiSepWorkspace {}Expand description
Workspace for chi-separation — holds all reusable buffers (f32).
Fields§
§n: usize§nx: usize§ny: usize§nz: usize§vsx: f32§vsy: f32§vsz: f32§fft_ws: Fft3dWorkspaceF32§gx: Vec<f32>§gy: Vec<f32>§gz: Vec<f32>§reg_x: Vec<f32>§reg_y: Vec<f32>§reg_z: Vec<f32>§div_buf: Vec<f32>§complex_buf: Vec<Complex32>§dipole_buf: Vec<f32>§tmp: Vec<f32>Implementations§
Auto Trait Implementations§
impl Freeze for ChiSepWorkspace
impl !RefUnwindSafe for ChiSepWorkspace
impl Send for ChiSepWorkspace
impl Sync for ChiSepWorkspace
impl Unpin for ChiSepWorkspace
impl UnsafeUnpin for ChiSepWorkspace
impl !UnwindSafe for ChiSepWorkspace
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> 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