pub struct PendingTool {
pub target: Target,
pub name: String,
pub kind: PendingKind,
pub started_ms: u64,
}Expand description
A deferred internal-tool request (answered when its wait resolves).
Fields§
§target: Target§name: String§kind: PendingKind§started_ms: u64Trait Implementations§
Source§impl Clone for PendingTool
impl Clone for PendingTool
Source§fn clone(&self) -> PendingTool
fn clone(&self) -> PendingTool
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 PendingTool
impl RefUnwindSafe for PendingTool
impl Send for PendingTool
impl Sync for PendingTool
impl Unpin for PendingTool
impl UnsafeUnpin for PendingTool
impl UnwindSafe for PendingTool
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