pub(crate) struct ThumbnailSettings {
pub(crate) dimensions: FrameDimensions,
pub(crate) method: Method,
pub(crate) animated: bool,
pub(crate) prefer_thumbnail: bool,
}Expand description
The settings for downloading a thumbnail.
Fields§
§dimensions: FrameDimensionsThe requested dimensions of the thumbnail.
method: MethodThe method to use to resize the thumbnail.
animated: boolWhether to request an animated thumbnail.
prefer_thumbnail: boolWhether we should prefer to get a thumbnail if dimensions are unknown.
This is particularly useful for avatars where we will prefer to save bandwidth and memory usage as we download a lot of them and they might appear several times on the screen. For media messages, we will on the contrary prefer to download the original content to reduce the space taken in the media cache.
Trait Implementations§
Source§impl Clone for ThumbnailSettings
impl Clone for ThumbnailSettings
Source§fn clone(&self) -> ThumbnailSettings
fn clone(&self) -> ThumbnailSettings
Returns a duplicate of the value. Read more
1.0.0 · 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 ThumbnailSettings
impl Debug for ThumbnailSettings
Source§impl From<ThumbnailSettings> for MediaThumbnailSettings
impl From<ThumbnailSettings> for MediaThumbnailSettings
Source§fn from(value: ThumbnailSettings) -> Self
fn from(value: ThumbnailSettings) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ThumbnailSettings
impl RefUnwindSafe for ThumbnailSettings
impl Send for ThumbnailSettings
impl Sync for ThumbnailSettings
impl Unpin for ThumbnailSettings
impl UnsafeUnpin for ThumbnailSettings
impl UnwindSafe for ThumbnailSettings
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more