pub enum InternalNotificationExpressError {
    TooManyRequests(TooManyRequests),
    ChatNotFound(ChatNotFound),
    ErrorFromMessagingService(ErrorFromMessagingService),
    BotIsNotAChatMember(BotIsNotAChatMember),
    EventRecipientsListIsEmpty(EventRecipientsListIsEmpty),
    Other,
}Expand description
Ошибки при отправке внутренней нотификации
Variants§
TooManyRequests(TooManyRequests)
Превышен лимит интенсивности запросов (429)
ChatNotFound(ChatNotFound)
Чат не найден
ErrorFromMessagingService(ErrorFromMessagingService)
Ошибка от Messaging сервиса
BotIsNotAChatMember(BotIsNotAChatMember)
Бот отправитель не является участником чата
EventRecipientsListIsEmpty(EventRecipientsListIsEmpty)
Итоговый список получателей события пуст
Other
Неопределенная ошибка, смотрите логи
Trait Implementations§
source§impl Clone for InternalNotificationExpressError
 
impl Clone for InternalNotificationExpressError
source§fn clone(&self) -> InternalNotificationExpressError
 
fn clone(&self) -> InternalNotificationExpressError
Returns a copy 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<'de> Deserialize<'de> for InternalNotificationExpressError
 
impl<'de> Deserialize<'de> for InternalNotificationExpressError
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
Auto Trait Implementations§
impl RefUnwindSafe for InternalNotificationExpressError
impl Send for InternalNotificationExpressError
impl Sync for InternalNotificationExpressError
impl Unpin for InternalNotificationExpressError
impl UnwindSafe for InternalNotificationExpressError
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