pub enum FileType {
Binary,
ASCII,
}
Expand description
This enum indicates if bulk data is saved in binary.
NOTE: VTK files are saved in ASCII format with bulk data optionally saved in
Binary among ASCII type keywords. Binary data must be placed into the file
immediately after the “newline” (\n
) character from the previous ASCII
keyword and parameter sequence. For example point positions and cell indices
and types can be saved in Binary in VTK files.
Variants§
Trait Implementations§
impl Copy for FileType
impl StructuralPartialEq for FileType
Auto Trait Implementations§
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
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