pub struct IngestionError {
pub id: String,
pub status: u16,
pub message: Option<String>,
}Expand description
A single failure result. Fields are intentionally lenient — only used for diagnostic logging; unknown fields are ignored.
Fields§
§id: String§status: u16§message: Option<String>Trait Implementations§
Source§impl Clone for IngestionError
impl Clone for IngestionError
Source§fn clone(&self) -> IngestionError
fn clone(&self) -> IngestionError
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 IngestionError
impl Debug for IngestionError
Source§impl<'de> Deserialize<'de> for IngestionError
impl<'de> Deserialize<'de> for IngestionError
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 Freeze for IngestionError
impl RefUnwindSafe for IngestionError
impl Send for IngestionError
impl Sync for IngestionError
impl Unpin for IngestionError
impl UnsafeUnpin for IngestionError
impl UnwindSafe for IngestionError
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