pub struct RichBlockAnimation {
pub animation: Animation,
pub need_autoplay: Option<bool>,
pub has_spoiler: Option<bool>,
pub caption: Option<RichBlockCaption>,
}Expand description
A looping animation / GIF block (<video loop>).
Fields§
§animation: AnimationThe animation file.
need_autoplay: Option<bool>true if the animation should play automatically.
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 RichBlockAnimation
impl Clone for RichBlockAnimation
Source§fn clone(&self) -> RichBlockAnimation
fn clone(&self) -> RichBlockAnimation
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 RichBlockAnimation
impl Debug for RichBlockAnimation
Source§impl<'de> Deserialize<'de> for RichBlockAnimation
impl<'de> Deserialize<'de> for RichBlockAnimation
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 RichBlockAnimation
impl RefUnwindSafe for RichBlockAnimation
impl Send for RichBlockAnimation
impl Sync for RichBlockAnimation
impl Unpin for RichBlockAnimation
impl UnsafeUnpin for RichBlockAnimation
impl UnwindSafe for RichBlockAnimation
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