pub struct RichBlockVideo {
pub video: Video,
pub has_spoiler: Option<bool>,
pub caption: Option<RichBlockCaption>,
}Expand description
A video block (<video>).
Fields§
§video: VideoThe video file.
has_spoiler: Option<bool>true if a spoiler overlay is shown before the first tap.
caption: Option<RichBlockCaption>Optional caption.
Trait Implementations§
Source§impl Clone for RichBlockVideo
impl Clone for RichBlockVideo
Source§fn clone(&self) -> RichBlockVideo
fn clone(&self) -> RichBlockVideo
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 RichBlockVideo
impl Debug for RichBlockVideo
Source§impl<'de> Deserialize<'de> for RichBlockVideo
impl<'de> Deserialize<'de> for RichBlockVideo
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 RichBlockVideo
impl RefUnwindSafe for RichBlockVideo
impl Send for RichBlockVideo
impl Sync for RichBlockVideo
impl Unpin for RichBlockVideo
impl UnsafeUnpin for RichBlockVideo
impl UnwindSafe for RichBlockVideo
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