pub trait SetStickerSetThumbnailSetters: HasPayload<Payload = SetStickerSetThumbnail> + Sized {
// Provided methods
fn name<T>(self, value: T) -> Self
where T: Into<String> { ... }
fn user_id(self, value: UserId) -> Self { ... }
fn format(self, value: StickerFormat) -> Self { ... }
fn thumbnail(self, value: InputFile) -> Self { ... }
}Expand description
Setters for fields of SetStickerSetThumbnail
Provided Methods§
Sourcefn format(self, value: StickerFormat) -> Self
fn format(self, value: StickerFormat) -> Self
Setter for format field.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.