pub struct SwfBuf {
pub header: HeaderExt,
pub data: Vec<u8>,
}Expand description
Returned by read::decompress_swf.
Owns the decompressed SWF data, which will be referenced when parsed by parse_swf.
Fields§
§header: HeaderExtThe parsed SWF header.
data: Vec<u8>The decompressed SWF tag stream.
Auto Trait Implementations§
impl Freeze for SwfBuf
impl RefUnwindSafe for SwfBuf
impl Send for SwfBuf
impl Sync for SwfBuf
impl Unpin for SwfBuf
impl UnwindSafe for SwfBuf
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