pub enum IntegrationErrorKind {
Transient,
Permanent,
Auth,
RateLimited,
Timeout,
Unavailable,
InvalidInput,
}Variants§
Trait Implementations§
Source§impl Clone for IntegrationErrorKind
impl Clone for IntegrationErrorKind
Source§fn clone(&self) -> IntegrationErrorKind
fn clone(&self) -> IntegrationErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntegrationErrorKind
impl Debug for IntegrationErrorKind
Source§impl<'de> Deserialize<'de> for IntegrationErrorKind
impl<'de> Deserialize<'de> for IntegrationErrorKind
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
Source§impl PartialEq for IntegrationErrorKind
impl PartialEq for IntegrationErrorKind
Source§fn eq(&self, other: &IntegrationErrorKind) -> bool
fn eq(&self, other: &IntegrationErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntegrationErrorKind
impl Serialize for IntegrationErrorKind
impl Copy for IntegrationErrorKind
impl Eq for IntegrationErrorKind
impl StructuralPartialEq for IntegrationErrorKind
Auto Trait Implementations§
impl Freeze for IntegrationErrorKind
impl RefUnwindSafe for IntegrationErrorKind
impl Send for IntegrationErrorKind
impl Sync for IntegrationErrorKind
impl Unpin for IntegrationErrorKind
impl UnsafeUnpin for IntegrationErrorKind
impl UnwindSafe for IntegrationErrorKind
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