pub struct ConvolutionResult<T = f32> {
pub image: Array2<T>,
pub scaling_factor: f64,
}Fields§
§image: Array2<T>Convolved image (NaNs propagated from input).
scaling_factor: f64Flux scaling factor for Jy/beam.
Auto Trait Implementations§
impl<T> Freeze for ConvolutionResult<T>
impl<T> RefUnwindSafe for ConvolutionResult<T>where
T: RefUnwindSafe,
impl<T> Send for ConvolutionResult<T>where
T: Send,
impl<T> Sync for ConvolutionResult<T>where
T: Sync,
impl<T> Unpin for ConvolutionResult<T>
impl<T> UnsafeUnpin for ConvolutionResult<T>
impl<T> UnwindSafe for ConvolutionResult<T>where
T: RefUnwindSafe,
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