pub struct MetaTag {
pub name: Bytes,
pub value: MetaDataValue,
}Expand description
The tag data part of script FLV tag, including name and value.
The name is a ScriptDataValue enum whose type is String.
The value is a ScriptDataValue enum whose type is ECMAArray.
Fields§
§name: BytesMethod or object name. ScriptTagValue.Type = 2 (String)
value: MetaDataValueAMF arguments or object properties. ScriptTagValue.Type = 8 (ECMAArray)
Trait Implementations§
impl StructuralPartialEq for MetaTag
Auto Trait Implementations§
impl !Freeze for MetaTag
impl RefUnwindSafe for MetaTag
impl Send for MetaTag
impl Sync for MetaTag
impl Unpin for MetaTag
impl UnsafeUnpin for MetaTag
impl UnwindSafe for MetaTag
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