pub struct CompressedVideo {
pub path: PathBuf,
pub width: u32,
pub height: u32,
pub duration_ms: u64,
pub size: u64,
pub mime_type: Option<String>,
}Fields§
§path: PathBuf§width: u32§height: u32§duration_ms: u64§size: u64§mime_type: Option<String>Trait Implementations§
Source§impl Clone for CompressedVideo
impl Clone for CompressedVideo
Source§fn clone(&self) -> CompressedVideo
fn clone(&self) -> CompressedVideo
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CompressedVideo
impl RefUnwindSafe for CompressedVideo
impl Send for CompressedVideo
impl Sync for CompressedVideo
impl Unpin for CompressedVideo
impl UnsafeUnpin for CompressedVideo
impl UnwindSafe for CompressedVideo
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