pub struct StaleCall {
pub id: String,
pub command: String,
pub timestamp: DateTime<Utc>,
pub age_ms: i64,
pub webview_label: String,
}Expand description
An IPC call that has been pending longer than the staleness threshold.
Fields§
§id: StringUnique call identifier.
command: StringName of the invoked command.
timestamp: DateTime<Utc>When the call was initiated.
age_ms: i64How long the call has been pending, in milliseconds.
webview_label: StringWebview that initiated the call.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StaleCall
impl<'de> Deserialize<'de> for StaleCall
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 StaleCall
impl StructuralPartialEq for StaleCall
Auto Trait Implementations§
impl Freeze for StaleCall
impl RefUnwindSafe for StaleCall
impl Send for StaleCall
impl Sync for StaleCall
impl Unpin for StaleCall
impl UnsafeUnpin for StaleCall
impl UnwindSafe for StaleCall
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