Trait SetStickerPositionInSetSetters

Source
pub trait SetStickerPositionInSetSetters: HasPayload<Payload = SetStickerPositionInSet> + Sized {
    // Provided methods
    fn sticker<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn position(self, value: u32) -> Self { ... }
}
Expand description

Setters for fields of SetStickerPositionInSet

Provided Methods§

Source

fn sticker<T>(self, value: T) -> Self
where T: Into<String>,

Setter for sticker field.

Source

fn position(self, value: u32) -> Self

Setter for position 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.

Implementors§