pub struct FstHeader {
pub start_time: u64,
pub end_time: u64,
pub var_count: u64,
pub max_handle: u64,
pub version: String,
pub date: String,
pub timescale_exponent: i8,
}Fields§
§start_time: u64time of first sample
end_time: u64time of last sample
var_count: u64number of variables in the design
max_handle: u64the highest signal handle; indicates the number of unique signals
version: Stringhuman readable version string
date: Stringhuman readable times stamp
timescale_exponent: i8the exponent of the timescale; timescale will be 10^(exponent) seconds
Trait Implementations§
impl StructuralPartialEq for FstHeader
Auto Trait Implementations§
impl Freeze for FstHeader
impl RefUnwindSafe for FstHeader
impl Send for FstHeader
impl Sync for FstHeader
impl Unpin for FstHeader
impl UnwindSafe for FstHeader
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