pub struct VideoDimension {
pub height: i32,
pub rotate: i32,
pub width: i32,
}Expand description
视频尺寸信息
Fields§
§height: i32高度
rotate: i32旋转角度
width: i32宽度
Trait Implementations§
Source§impl Clone for VideoDimension
impl Clone for VideoDimension
Source§fn clone(&self) -> VideoDimension
fn clone(&self) -> VideoDimension
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 VideoDimension
impl Debug for VideoDimension
Source§impl<'de> Deserialize<'de> for VideoDimension
impl<'de> Deserialize<'de> for VideoDimension
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 VideoDimension
impl RefUnwindSafe for VideoDimension
impl Send for VideoDimension
impl Sync for VideoDimension
impl Unpin for VideoDimension
impl UnsafeUnpin for VideoDimension
impl UnwindSafe for VideoDimension
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