pub struct FstInfo {
pub start_time: u64,
pub timescale_exponent: i8,
pub version: String,
pub date: String,
pub file_type: FstFileType,
}Fields§
§start_time: u64§timescale_exponent: i8All times in the file are stored in units of 10^timescale_exponent s.
version: String§date: String§file_type: FstFileTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for FstInfo
impl RefUnwindSafe for FstInfo
impl Send for FstInfo
impl Sync for FstInfo
impl Unpin for FstInfo
impl UnwindSafe for FstInfo
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