pub struct VtkParallelWriter;Expand description
Writer for parallel VTK datasets (PVTU format).
Implementations§
Source§impl VtkParallelWriter
impl VtkParallelWriter
Sourcepub fn write_pvtu(
partitions: &[VtkPartition],
point_arrays: &[(&str, usize)],
cell_arrays: &[(&str, usize)],
) -> String
pub fn write_pvtu( partitions: &[VtkPartition], point_arrays: &[(&str, usize)], cell_arrays: &[(&str, usize)], ) -> String
Generate a PVTU XML file that references individual piece files.
§Arguments
partitions– information about each piece.point_arrays– list of(name, n_components)for point data arrays.cell_arrays– list of(name, n_components)for cell data arrays.
Auto Trait Implementations§
impl Freeze for VtkParallelWriter
impl RefUnwindSafe for VtkParallelWriter
impl Send for VtkParallelWriter
impl Sync for VtkParallelWriter
impl Unpin for VtkParallelWriter
impl UnsafeUnpin for VtkParallelWriter
impl UnwindSafe for VtkParallelWriter
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.