pub struct StoryContentVideo {
pub video: StoryVideo,
pub alternative_video: Option<StoryVideo>,
}
Expand description
A video story
Fields§
§video: StoryVideo
The video in MPEG4 format
alternative_video: Option<StoryVideo>
Alternative version of the video in MPEG4 format, encoded by x264 codec; may be null
Trait Implementations§
Source§impl Clone for StoryContentVideo
impl Clone for StoryContentVideo
Source§fn clone(&self) -> StoryContentVideo
fn clone(&self) -> StoryContentVideo
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 StoryContentVideo
impl Debug for StoryContentVideo
Source§impl<'de> Deserialize<'de> for StoryContentVideo
impl<'de> Deserialize<'de> for StoryContentVideo
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 StoryContentVideo
impl PartialEq for StoryContentVideo
Source§impl Serialize for StoryContentVideo
impl Serialize for StoryContentVideo
impl StructuralPartialEq for StoryContentVideo
Auto Trait Implementations§
impl Freeze for StoryContentVideo
impl RefUnwindSafe for StoryContentVideo
impl Send for StoryContentVideo
impl Sync for StoryContentVideo
impl Unpin for StoryContentVideo
impl UnwindSafe for StoryContentVideo
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