pub struct Vol {
pub c: usize,
pub f: usize,
pub h: usize,
pub w: usize,
pub data: Vec<f32>,
}Expand description
One [C, F, H, W] volume.
Fields§
§c: usize§f: usize§h: usize§w: usize§data: Vec<f32>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vol
impl RefUnwindSafe for Vol
impl Send for Vol
impl Sync for Vol
impl Unpin for Vol
impl UnsafeUnpin for Vol
impl UnwindSafe for Vol
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