pub struct InteractiveVideoDimension {
pub width: u32,
pub height: u32,
pub rotate: u8,
pub sar: String,
}Expand description
分辨率信息
Fields§
§width: u32宽度
height: u32高度
rotate: u8是否将宽高对换, 0: 正常, 1: 对换
sar: String作用尚不明确
Trait Implementations§
Source§impl Clone for InteractiveVideoDimension
impl Clone for InteractiveVideoDimension
Source§fn clone(&self) -> InteractiveVideoDimension
fn clone(&self) -> InteractiveVideoDimension
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InteractiveVideoDimension
impl Debug for InteractiveVideoDimension
Source§impl<'de> Deserialize<'de> for InteractiveVideoDimension
impl<'de> Deserialize<'de> for InteractiveVideoDimension
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
Auto Trait Implementations§
impl Freeze for InteractiveVideoDimension
impl RefUnwindSafe for InteractiveVideoDimension
impl Send for InteractiveVideoDimension
impl Sync for InteractiveVideoDimension
impl Unpin for InteractiveVideoDimension
impl UnsafeUnpin for InteractiveVideoDimension
impl UnwindSafe for InteractiveVideoDimension
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