pub struct BookWriter<W: Write> { /* private fields */ }
Implementations§
Source§impl<W: Write> BookWriter<W>
impl<W: Write> BookWriter<W>
pub fn create(writer: W, header: &BookHeader, sheet_count: u32) -> Result<Self>
pub fn sheet_count(&self) -> u32
pub fn written_count(&self) -> u32
pub fn write_next(&mut self, sheet: &BookSheet) -> Result<()>
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for BookWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for BookWriter<W>where
W: RefUnwindSafe,
impl<W> Send for BookWriter<W>where
W: Send,
impl<W> Sync for BookWriter<W>where
W: Sync,
impl<W> Unpin for BookWriter<W>where
W: Unpin,
impl<W> UnwindSafe for BookWriter<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