pub struct PendingCall {
pub id: usize,
pub tool: String,
pub args: Value,
pub priority: i32,
}Fields§
§id: usize§tool: String§args: Value§priority: i32Trait Implementations§
Source§impl Clone for PendingCall
impl Clone for PendingCall
Source§fn clone(&self) -> PendingCall
fn clone(&self) -> PendingCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PendingCall
impl RefUnwindSafe for PendingCall
impl Send for PendingCall
impl Sync for PendingCall
impl Unpin for PendingCall
impl UnsafeUnpin for PendingCall
impl UnwindSafe for PendingCall
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