pub struct RichBlockPhoto {
pub photo: Vec<PhotoSize>,
pub has_spoiler: Option<bool>,
pub caption: Option<RichBlockCaption>,
}Expand description
A photo block (<photo>).
Fields§
§photo: Vec<PhotoSize>All available sizes of the photo.
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 RichBlockPhoto
impl Clone for RichBlockPhoto
Source§fn clone(&self) -> RichBlockPhoto
fn clone(&self) -> RichBlockPhoto
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 RichBlockPhoto
impl Debug for RichBlockPhoto
Source§impl<'de> Deserialize<'de> for RichBlockPhoto
impl<'de> Deserialize<'de> for RichBlockPhoto
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 RichBlockPhoto
impl RefUnwindSafe for RichBlockPhoto
impl Send for RichBlockPhoto
impl Sync for RichBlockPhoto
impl Unpin for RichBlockPhoto
impl UnsafeUnpin for RichBlockPhoto
impl UnwindSafe for RichBlockPhoto
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