pub struct IntegrationError {
pub source: String,
pub kind: IntegrationErrorKind,
pub message: String,
pub code: Option<String>,
pub retryable: bool,
}Fields§
§source: String§kind: IntegrationErrorKind§message: String§code: Option<String>§retryable: boolImplementations§
Trait Implementations§
Source§impl Clone for IntegrationError
impl Clone for IntegrationError
Source§fn clone(&self) -> IntegrationError
fn clone(&self) -> IntegrationError
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 IntegrationError
impl Debug for IntegrationError
Source§impl<'de> Deserialize<'de> for IntegrationError
impl<'de> Deserialize<'de> for IntegrationError
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 Display for IntegrationError
impl Display for IntegrationError
Source§impl Error for IntegrationError
impl Error for IntegrationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for IntegrationError
impl PartialEq for IntegrationError
Source§fn eq(&self, other: &IntegrationError) -> bool
fn eq(&self, other: &IntegrationError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntegrationError
impl Serialize for IntegrationError
impl StructuralPartialEq for IntegrationError
Auto Trait Implementations§
impl Freeze for IntegrationError
impl RefUnwindSafe for IntegrationError
impl Send for IntegrationError
impl Sync for IntegrationError
impl Unpin for IntegrationError
impl UnsafeUnpin for IntegrationError
impl UnwindSafe for IntegrationError
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