pub struct VideoStoryboard {
pub storyboard_file: File,
pub width: i32,
pub height: i32,
pub map_file: File,
}Expand description
Describes a storyboard for a video
Fields§
§storyboard_file: FileA JPEG file that contains tiled previews of video
width: i32Width of a tile
height: i32Height of a tile
map_file: FileFile that describes mapping of position in the video to a tile in the JPEG file
Trait Implementations§
Source§impl Clone for VideoStoryboard
impl Clone for VideoStoryboard
Source§fn clone(&self) -> VideoStoryboard
fn clone(&self) -> VideoStoryboard
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 moreSource§impl Debug for VideoStoryboard
impl Debug for VideoStoryboard
Source§impl Default for VideoStoryboard
impl Default for VideoStoryboard
Source§fn default() -> VideoStoryboard
fn default() -> VideoStoryboard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VideoStoryboard
impl<'de> Deserialize<'de> for VideoStoryboard
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
Source§impl PartialEq for VideoStoryboard
impl PartialEq for VideoStoryboard
Source§impl Serialize for VideoStoryboard
impl Serialize for VideoStoryboard
impl StructuralPartialEq for VideoStoryboard
Auto Trait Implementations§
impl Freeze for VideoStoryboard
impl RefUnwindSafe for VideoStoryboard
impl Send for VideoStoryboard
impl Sync for VideoStoryboard
impl Unpin for VideoStoryboard
impl UnsafeUnpin for VideoStoryboard
impl UnwindSafe for VideoStoryboard
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