pub enum ExodusFormat<P>{
Classic(P),
Netcdf4 {
path: P,
threads: usize,
},
}Expand description
Which on-disk Exodus flavour to write.
Variants§
Classic(P)
Classic netCDF (CDF-5).
Netcdf4
netCDF-4 (HDF5): chunked, shuffle + deflate compressed. threads bounds
the pool used to compress chunks (0 or 1 compresses serially).
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for ExodusFormat<P>where
P: Freeze,
impl<P> RefUnwindSafe for ExodusFormat<P>where
P: RefUnwindSafe,
impl<P> Send for ExodusFormat<P>where
P: Send,
impl<P> Sync for ExodusFormat<P>where
P: Sync,
impl<P> Unpin for ExodusFormat<P>where
P: Unpin,
impl<P> UnsafeUnpin for ExodusFormat<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for ExodusFormat<P>where
P: 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