pub struct Sto {
pub file_description: Option<String>,
pub version: u8,
pub in_degrees: bool,
pub first_frame: usize,
pub data_rate: f32,
pub column_names: Vec<String>,
pub data: Grid<f64>,
}
Expand description
The STO struct contains the data for writing an STO file.
Fields§
§file_description: Option<String>
§version: u8
§in_degrees: bool
§first_frame: usize
§data_rate: f32
§column_names: Vec<String>
§data: Grid<f64>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sto
impl RefUnwindSafe for Sto
impl Send for Sto
impl Sync for Sto
impl Unpin for Sto
impl UnwindSafe for Sto
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