pub struct ErrorCall {
pub id: String,
pub command: String,
pub timestamp: DateTime<Utc>,
pub error: String,
pub webview_label: String,
}Expand description
An IPC call that returned an error result.
Fields§
§id: StringUnique call identifier.
command: StringName of the invoked command.
timestamp: DateTime<Utc>When the call was initiated.
error: StringError message returned by the backend.
webview_label: StringWebview that initiated the call.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ErrorCall
impl<'de> Deserialize<'de> for ErrorCall
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
impl Eq for ErrorCall
impl StructuralPartialEq for ErrorCall
Auto Trait Implementations§
impl Freeze for ErrorCall
impl RefUnwindSafe for ErrorCall
impl Send for ErrorCall
impl Sync for ErrorCall
impl Unpin for ErrorCall
impl UnsafeUnpin for ErrorCall
impl UnwindSafe for ErrorCall
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