Skip to main content

Write

Trait Write 

Source
pub trait Write<P>
where P: AsRef<Path>,
{ type Error; // Required method fn write(&self, path: P) -> Result<(), Self::Error>; }

Required Associated Types§

Required Methods§

Source

fn write(&self, path: P) -> Result<(), Self::Error>

Implementors§

Source§

impl<P> Write<P> for Tessellation
where P: AsRef<Path>,

Source§

impl<P: AsRef<Path>> Write<P> for Zip

Source§

impl<T, P> Write<P> for Npy<T>
where T: NpyType, P: AsRef<Path>,

Source§

impl<const D: usize, P> Write<Output<P>> for Mesh<D>
where P: AsRef<Path>,

Source§

impl<const D: usize, T, P> Write<Output<P>> for Grid<D, T>
where P: AsRef<Path>, T: NpyType + Display,

Source§

impl<const D: usize, const L: usize, const M: usize, const N: usize, T, U, P> Write<Output<P>> for Orthotree<D, L, M, N, T, U>
where P: AsRef<Path>, T: Copy + Into<Scalar> + Into<usize>, U: Copy + Into<usize>,