pub struct S25Writer<A = File>where
A: Write,{ /* private fields */ }Expand description
A writer for .S25 format.
Implementations§
Source§impl<T> S25Writer<T>
impl<T> S25Writer<T>
Sourcepub fn into_inner(self) -> Result<T, IntoInnerError<BufWriter<T>>>
pub fn into_inner(self) -> Result<T, IntoInnerError<BufWriter<T>>>
Unwraps the S25Writer and returns the underlying writer.
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for S25Writer<A>where
A: Freeze,
impl<A> RefUnwindSafe for S25Writer<A>where
A: RefUnwindSafe,
impl<A> Send for S25Writer<A>where
A: Send,
impl<A> Sync for S25Writer<A>where
A: Sync,
impl<A> Unpin for S25Writer<A>where
A: Unpin,
impl<A> UnsafeUnpin for S25Writer<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for S25Writer<A>where
A: 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