Struct swf::ProductInfo
source · [−]pub struct ProductInfo {
pub product_id: u32,
pub edition: u32,
pub major_version: u8,
pub minor_version: u8,
pub build_number: u64,
pub compilation_date: u64,
}Expand description
ProductInfo contains information about the software used to generate the SWF.
Not documented in the SWF19 reference. Emitted by mxmlc.
See http://wahlers.com.br/claus/blog/undocumented-swf-tags-written-by-mxmlc/
Fields
product_id: u32edition: u32major_version: u8minor_version: u8build_number: u64compilation_date: u64Trait Implementations
sourceimpl Clone for ProductInfo
impl Clone for ProductInfo
sourcefn clone(&self) -> ProductInfo
fn clone(&self) -> ProductInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ProductInfo
impl Debug for ProductInfo
sourceimpl PartialEq<ProductInfo> for ProductInfo
impl PartialEq<ProductInfo> for ProductInfo
sourcefn eq(&self, other: &ProductInfo) -> bool
fn eq(&self, other: &ProductInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ProductInfo) -> bool
fn ne(&self, other: &ProductInfo) -> bool
This method tests for !=.
impl Eq for ProductInfo
impl StructuralEq for ProductInfo
impl StructuralPartialEq for ProductInfo
Auto Trait Implementations
impl RefUnwindSafe for ProductInfo
impl Send for ProductInfo
impl Sync for ProductInfo
impl Unpin for ProductInfo
impl UnwindSafe for ProductInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more