pub struct PendingAction {
pub action_id: String,
pub response_path: Option<String>,
}Expand description
Metadata for tracking actions awaiting a server response.
Fields§
§action_id: StringThe unique action ID that was sent to the server.
response_path: Option<String>Optional JSON Pointer path where the response value should be stored.
Auto Trait Implementations§
impl Freeze for PendingAction
impl RefUnwindSafe for PendingAction
impl Send for PendingAction
impl Sync for PendingAction
impl Unpin for PendingAction
impl UnsafeUnpin for PendingAction
impl UnwindSafe for PendingAction
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