pub struct PullRequestInspectRequest {
pub coordinates: PullRequestCoordinates,
pub consent_to_remote_access: bool,
pub cancellation: CancellationToken,
}Expand description
One opt-in inspection request.
Fields§
§coordinates: PullRequestCoordinatesProvider coordinates to inspect.
consent_to_remote_access: boolPer-call confirmation that remote access is allowed.
cancellation: CancellationTokenCooperative cancellation signal.
Trait Implementations§
Source§impl Clone for PullRequestInspectRequest
impl Clone for PullRequestInspectRequest
Source§fn clone(&self) -> PullRequestInspectRequest
fn clone(&self) -> PullRequestInspectRequest
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 PullRequestInspectRequest
impl RefUnwindSafe for PullRequestInspectRequest
impl Send for PullRequestInspectRequest
impl Sync for PullRequestInspectRequest
impl Unpin for PullRequestInspectRequest
impl UnsafeUnpin for PullRequestInspectRequest
impl UnwindSafe for PullRequestInspectRequest
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