Enum ruma_client_api::media::get_content_thumbnail::v3::Method
source · #[non_exhaustive]
pub enum Method {
Crop,
Scale,
// some variants omitted
}
Available on crate features
client
or server
only.Expand description
The desired resizing method.
This type can hold an arbitrary string. To build this with a custom value, convert it from a
string with ::from()
/ .into()
. To check for values that are not available as a
documented variant here, use its string representation, obtained through
.as_str()
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Crop
Crop the original to produce the requested image dimensions.
Scale
Maintain the original aspect ratio of the source image.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Method
impl<'de> Deserialize<'de> for Method
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