pub struct Writer<W: Write> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<W: Write> SwfWriteExt for Writer<W>
impl<W: Write> SwfWriteExt for Writer<W>
fn write_u8(&mut self, n: u8) -> Result<()>
fn write_u16(&mut self, n: u16) -> Result<()>
fn write_u32(&mut self, n: u32) -> Result<()>
fn write_u64(&mut self, n: u64) -> Result<()>
fn write_i8(&mut self, n: i8) -> Result<()>
fn write_i16(&mut self, n: i16) -> Result<()>
fn write_i32(&mut self, n: i32) -> Result<()>
fn write_f32(&mut self, n: f32) -> Result<()>
fn write_f64(&mut self, n: f64) -> Result<()>
fn write_string(&mut self, s: &SwfStr) -> Result<()>
Auto Trait Implementations§
impl<W> Freeze for Writer<W>where
W: Freeze,
impl<W> RefUnwindSafe for Writer<W>where
W: RefUnwindSafe,
impl<W> Send for Writer<W>where
W: Send,
impl<W> Sync for Writer<W>where
W: Sync,
impl<W> Unpin for Writer<W>where
W: Unpin,
impl<W> UnwindSafe for Writer<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