pub struct FstBodyWriter<W: Write + Seek> { /* private fields */ }Implementations§
Source§impl<W: Write + Seek> FstBodyWriter<W>
impl<W: Write + Seek> FstBodyWriter<W>
pub fn time_change(&mut self, time: u64) -> Result<(), FstWriteError>
pub fn signal_change( &mut self, signal_id: FstSignalId, value: &[u8], ) -> Result<(), FstWriteError>
Sourcepub fn flush(&mut self) -> Result<(), FstWriteError>
pub fn flush(&mut self) -> Result<(), FstWriteError>
flushes all value change data to disk
Sourcepub fn size(&self) -> usize
pub fn size(&self) -> usize
Returns the estimated size of all data structures that grow over time.
pub fn finish(self) -> Result<(), FstWriteError>
Auto Trait Implementations§
impl<W> Freeze for FstBodyWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for FstBodyWriter<W>where
W: RefUnwindSafe,
impl<W> Send for FstBodyWriter<W>where
W: Send,
impl<W> Sync for FstBodyWriter<W>where
W: Sync,
impl<W> Unpin for FstBodyWriter<W>where
W: Unpin,
impl<W> UnwindSafe for FstBodyWriter<W>where
W: UnwindSafe,
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