Struct tgbot::types::CreateNewStickerSet

source ·
pub struct CreateNewStickerSet { /* private fields */ }
Expand description

Creates a new sticker set owned by a user.

The bot will be able to edit the created sticker set.

Implementations§

source§

impl CreateNewStickerSet

source

pub fn new<A, B>( user_id: Integer, name: A, title: B, stickers: InputStickers ) -> Result<Self, InputStickerError>
where A: Into<String>, B: Into<String>,

Creates a new CreateNewStickerSet.

§Arguments
  • user_id - User identifier of created sticker set owner.
  • name - Short name of sticker set, to be used in t.me/addstickers/ URLs (e.g., animals); can contain only english letters, digits and underscores; must begin with a letter, can’t contain consecutive underscores and must end in _by_<bot username>; <bot_username> is case insensitive; 1-64 characters.
  • title - Sticker set title; 1-64 characters.
  • stickers - A list of 1-50 initial stickers to be added to the sticker set.
source

pub fn with_needs_repainting(self, value: bool) -> Self

Sets a new value for a needs_repainting flag.

§Arguments
  • value - Indicates whether stickers in the sticker set must be repainted to the color of text when used in messages, the accent color if used as emoji status, white on chat photos, or another appropriate color based on context; for custom emoji sticker sets only.
source

pub fn with_sticker_type(self, value: StickerType) -> Self

Sets a new sticker type.

§Arguments
  • value - Type of stickers in the set.

By default, a regular sticker set is created.

Trait Implementations§

source§

impl Debug for CreateNewStickerSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Method for CreateNewStickerSet

§

type Response = bool

The type representing a successful result in an API response.
source§

fn into_payload(self) -> Payload

Converts the method into a payload for an HTTP request.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,