pub struct SwfSignature {
pub compression_method: CompressionMethod,
pub swf_version: u8,
pub uncompressed_file_length: usize,
}
Expand description
The signature is the part of the header that is not compressed
Fields§
§compression_method: CompressionMethod
The compression method used for the body of this SWF file
swf_version: u8
SWF version
uncompressed_file_length: usize
Trait Implementations§
Source§impl Clone for SwfSignature
impl Clone for SwfSignature
Source§fn clone(&self) -> SwfSignature
fn clone(&self) -> SwfSignature
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SwfSignature
impl Debug for SwfSignature
Source§impl<'de> Deserialize<'de> for SwfSignature
impl<'de> Deserialize<'de> for SwfSignature
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SwfSignature
impl Hash for SwfSignature
Source§impl Ord for SwfSignature
impl Ord for SwfSignature
Source§fn cmp(&self, other: &SwfSignature) -> Ordering
fn cmp(&self, other: &SwfSignature) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SwfSignature
impl PartialEq for SwfSignature
Source§impl PartialOrd for SwfSignature
impl PartialOrd for SwfSignature
Source§impl Serialize for SwfSignature
impl Serialize for SwfSignature
impl Copy for SwfSignature
impl Eq for SwfSignature
impl StructuralPartialEq for SwfSignature
Auto Trait Implementations§
impl Freeze for SwfSignature
impl RefUnwindSafe for SwfSignature
impl Send for SwfSignature
impl Sync for SwfSignature
impl Unpin for SwfSignature
impl UnwindSafe for SwfSignature
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