pub struct ProviderRequest {
pub repo_id: RepoId,
pub project_path: PathBuf,
pub budget: ProviderBudget,
pub cancellation: CancellationToken,
}Expand description
Repository scope and controls shared by all provider requests.
Fields§
§repo_id: RepoIdStable repository identity.
project_path: PathBufNative absolute checkout path passed directly to the child process.
budget: ProviderBudgetExplicit execution limits.
cancellation: CancellationTokenCooperative cancellation signal.
Trait Implementations§
Source§impl Clone for ProviderRequest
impl Clone for ProviderRequest
Source§fn clone(&self) -> ProviderRequest
fn clone(&self) -> ProviderRequest
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 ProviderRequest
impl RefUnwindSafe for ProviderRequest
impl Send for ProviderRequest
impl Sync for ProviderRequest
impl Unpin for ProviderRequest
impl UnsafeUnpin for ProviderRequest
impl UnwindSafe for ProviderRequest
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