pub struct MicroformatThumbnail {
pub thumbnails: Option<Vec<VideoThumbnail>>,
}
Expand description
Represents thumbnail information in microformat data
Fields§
§thumbnails: Option<Vec<VideoThumbnail>>
List of thumbnails in different sizes
Trait Implementations§
Source§impl Clone for MicroformatThumbnail
impl Clone for MicroformatThumbnail
Source§fn clone(&self) -> MicroformatThumbnail
fn clone(&self) -> MicroformatThumbnail
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MicroformatThumbnail
impl Debug for MicroformatThumbnail
Source§impl<'de> Deserialize<'de> for MicroformatThumbnail
impl<'de> Deserialize<'de> for MicroformatThumbnail
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 MicroformatThumbnail
impl RefUnwindSafe for MicroformatThumbnail
impl Send for MicroformatThumbnail
impl Sync for MicroformatThumbnail
impl Unpin for MicroformatThumbnail
impl UnwindSafe for MicroformatThumbnail
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