pub struct RetryPart {
pub attempt: u64,
pub error: APIError,
pub id: String,
pub message_id: String,
pub session_id: String,
pub time: RetryPartTime,
pub type_: String,
}Fields§
§attempt: u64§error: APIError§id: String§message_id: String§session_id: String§time: RetryPartTime§type_: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for RetryPart
impl<'de> Deserialize<'de> for RetryPart
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
impl StructuralPartialEq for RetryPart
Auto Trait Implementations§
impl Freeze for RetryPart
impl RefUnwindSafe for RetryPart
impl Send for RetryPart
impl Sync for RetryPart
impl Unpin for RetryPart
impl UnsafeUnpin for RetryPart
impl UnwindSafe for RetryPart
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