pub struct ServiceError {
pub message: String,
pub property_name: Option<String>,
pub property_value: Option<String>,
}
Expand description
An error returned by the Schema Registry Service.
Fields§
§message: String
The error message.
property_name: Option<String>
The name of the property associated with the error, if present.
property_value: Option<String>
The value of the property associated with the error, if present.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ServiceError
impl RefUnwindSafe for ServiceError
impl Send for ServiceError
impl Sync for ServiceError
impl Unpin for ServiceError
impl UnwindSafe for ServiceError
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