#[non_exhaustive]pub struct TransferErrorLogEntry {
pub uri: String,
pub error_details: Vec<String>,
/* private fields */
}Expand description
An entry describing an error that has occurred.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uri: StringA URL that refers to the target (a data source, a data sink, or an object) with which the error is associated.
error_details: Vec<String>A list of messages that carry the error details.
Implementations§
Source§impl TransferErrorLogEntry
impl TransferErrorLogEntry
pub fn new() -> Self
Sourcepub fn set_error_details<T, V>(self, v: T) -> Self
pub fn set_error_details<T, V>(self, v: T) -> Self
Sets the value of error_details.
Trait Implementations§
Source§impl Clone for TransferErrorLogEntry
impl Clone for TransferErrorLogEntry
Source§fn clone(&self) -> TransferErrorLogEntry
fn clone(&self) -> TransferErrorLogEntry
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 TransferErrorLogEntry
impl Debug for TransferErrorLogEntry
Source§impl Default for TransferErrorLogEntry
impl Default for TransferErrorLogEntry
Source§fn default() -> TransferErrorLogEntry
fn default() -> TransferErrorLogEntry
Returns the “default value” for a type. Read more
Source§impl Message for TransferErrorLogEntry
impl Message for TransferErrorLogEntry
Source§impl PartialEq for TransferErrorLogEntry
impl PartialEq for TransferErrorLogEntry
impl StructuralPartialEq for TransferErrorLogEntry
Auto Trait Implementations§
impl Freeze for TransferErrorLogEntry
impl RefUnwindSafe for TransferErrorLogEntry
impl Send for TransferErrorLogEntry
impl Sync for TransferErrorLogEntry
impl Unpin for TransferErrorLogEntry
impl UnwindSafe for TransferErrorLogEntry
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