pub struct DataIssue {
pub kind: String,
pub code: String,
pub message: String,
pub severity: String,
pub source: String,
pub topic: Option<String>,
pub details: Option<String>,
}Expand description
DataIssue data container.
Fields§
§kind: Stringkind field for kind.
code: Stringcode field for code.
message: Stringmessage field for message.
severity: Stringseverity field for severity.
source: Stringsource field for source.
topic: Option<String>topic field for topic.
details: Option<String>details field for details.
Trait Implementations§
impl StructuralPartialEq for DataIssue
Auto Trait Implementations§
impl Freeze for DataIssue
impl RefUnwindSafe for DataIssue
impl Send for DataIssue
impl Sync for DataIssue
impl Unpin for DataIssue
impl UnsafeUnpin for DataIssue
impl UnwindSafe for DataIssue
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