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
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: u32
§edition: u32
§major_version: u8
§minor_version: u8
§build_number: u64
§compilation_date: u64
Trait Implementations§
Source§impl Clone for ProductInfo
impl Clone for ProductInfo
Source§fn clone(&self) -> ProductInfo
fn clone(&self) -> ProductInfo
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 ProductInfo
impl Debug for ProductInfo
Source§impl PartialEq for ProductInfo
impl PartialEq for ProductInfo
impl Eq for ProductInfo
impl StructuralPartialEq for ProductInfo
Auto Trait Implementations§
impl Freeze for ProductInfo
impl RefUnwindSafe for ProductInfo
impl Send for ProductInfo
impl Sync for ProductInfo
impl Unpin for ProductInfo
impl UnwindSafe for ProductInfo
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