pub struct AirbyteErrorTraceMessage {
pub failure_type: Option<String>,
pub internal_message: Option<String>,
pub message: String,
pub stack_trace: Option<String>,
pub stream_descriptor: Option<StreamDescriptor>,
}
Fields§
§failure_type: Option<String>
The type of error
internal_message: Option<String>
The internal error that caused the failure
message: String
A user-friendly message that indicates the cause of the error
stack_trace: Option<String>
The full stack trace of the error
stream_descriptor: Option<StreamDescriptor>
The stream associated with the error, if known (optional)
Trait Implementations§
Source§impl Clone for AirbyteErrorTraceMessage
impl Clone for AirbyteErrorTraceMessage
Source§fn clone(&self) -> AirbyteErrorTraceMessage
fn clone(&self) -> AirbyteErrorTraceMessage
Returns a duplicate 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 Debug for AirbyteErrorTraceMessage
impl Debug for AirbyteErrorTraceMessage
Source§impl<'de> Deserialize<'de> for AirbyteErrorTraceMessage
impl<'de> Deserialize<'de> for AirbyteErrorTraceMessage
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 AirbyteErrorTraceMessage
impl PartialEq for AirbyteErrorTraceMessage
Source§impl Serialize for AirbyteErrorTraceMessage
impl Serialize for AirbyteErrorTraceMessage
impl StructuralPartialEq for AirbyteErrorTraceMessage
Auto Trait Implementations§
impl Freeze for AirbyteErrorTraceMessage
impl RefUnwindSafe for AirbyteErrorTraceMessage
impl Send for AirbyteErrorTraceMessage
impl Sync for AirbyteErrorTraceMessage
impl Unpin for AirbyteErrorTraceMessage
impl UnwindSafe for AirbyteErrorTraceMessage
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