pub struct Thumbnail {
pub uri: String,
pub media_type: Option<String>,
pub width: Option<NonZeroU16>,
pub height: Option<NonZeroU16>,
}
Expand description
A Jingle thumbnail.
Fields§
§uri: String
The URI of the thumbnail.
media_type: Option<String>
The media type of the thumbnail.
width: Option<NonZeroU16>
The width of the thumbnail.
height: Option<NonZeroU16>
The height of the thumbnail.
Trait Implementations§
impl StructuralPartialEq for Thumbnail
Auto Trait Implementations§
impl Freeze for Thumbnail
impl RefUnwindSafe for Thumbnail
impl Send for Thumbnail
impl Sync for Thumbnail
impl Unpin for Thumbnail
impl UnwindSafe for Thumbnail
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