pub struct PendingRequest {
pub id: CoreRequestId,
pub command: CommandQuery,
pub waiting_for: HashSet<TextFile>,
}Expand description
A pending LSP request waiting for assets to be resolved.
Fields§
§id: CoreRequestIdThe request ID.
command: CommandQueryThe command to execute.
waiting_for: HashSet<TextFile>Assets this request is waiting for.
Auto Trait Implementations§
impl Freeze for PendingRequest
impl RefUnwindSafe for PendingRequest
impl Send for PendingRequest
impl Sync for PendingRequest
impl Unpin for PendingRequest
impl UnwindSafe for PendingRequest
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