pub struct PullRequestPost { /* private fields */ }
Expand description
Request builder for creating a pull request.
This struct is used to build and send requests to create pull requests.
Trait Implementations§
Source§impl ApiRequest for PullRequestPost
impl ApiRequest for PullRequestPost
Source§async fn send(&self) -> ApiResponse<Self::Output>
async fn send(&self) -> ApiResponse<Self::Output>
Sends the request to create a pull request.
§Returns
A Result containing the created pull request information or an error.
Source§type Output = PullRequestPostPayload
type Output = PullRequestPostPayload
The type of the response to deserialize to.
Auto Trait Implementations§
impl Freeze for PullRequestPost
impl !RefUnwindSafe for PullRequestPost
impl Send for PullRequestPost
impl Sync for PullRequestPost
impl Unpin for PullRequestPost
impl !UnwindSafe for PullRequestPost
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