pub struct GalleryItem {
pub src: String,
pub caption: Option<String>,
pub alt: Option<String>,
pub category: Option<String>,
}Expand description
A single item in a Gallery block.
Fields§
§src: String§caption: Option<String>§alt: Option<String>§category: Option<String>Trait Implementations§
Source§impl Clone for GalleryItem
impl Clone for GalleryItem
Source§fn clone(&self) -> GalleryItem
fn clone(&self) -> GalleryItem
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 GalleryItem
impl Debug for GalleryItem
Source§impl<'de> Deserialize<'de> for GalleryItem
impl<'de> Deserialize<'de> for GalleryItem
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 GalleryItem
impl RefUnwindSafe for GalleryItem
impl Send for GalleryItem
impl Sync for GalleryItem
impl Unpin for GalleryItem
impl UnsafeUnpin for GalleryItem
impl UnwindSafe for GalleryItem
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