pub struct UpdatePullRequestDescriptionInput {
pub description: String,
pub pull_request_id: String,
}Fields§
§description: StringThe updated content of the description for the pull request. This content replaces the existing description.
pull_request_id: StringThe system-generated ID of the pull request. To get this ID, use ListPullRequests.
Trait Implementations§
Source§impl Clone for UpdatePullRequestDescriptionInput
impl Clone for UpdatePullRequestDescriptionInput
Source§fn clone(&self) -> UpdatePullRequestDescriptionInput
fn clone(&self) -> UpdatePullRequestDescriptionInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for UpdatePullRequestDescriptionInput
impl Default for UpdatePullRequestDescriptionInput
Source§fn default() -> UpdatePullRequestDescriptionInput
fn default() -> UpdatePullRequestDescriptionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePullRequestDescriptionInput
impl PartialEq for UpdatePullRequestDescriptionInput
Source§fn eq(&self, other: &UpdatePullRequestDescriptionInput) -> bool
fn eq(&self, other: &UpdatePullRequestDescriptionInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdatePullRequestDescriptionInput
Auto Trait Implementations§
impl Freeze for UpdatePullRequestDescriptionInput
impl RefUnwindSafe for UpdatePullRequestDescriptionInput
impl Send for UpdatePullRequestDescriptionInput
impl Sync for UpdatePullRequestDescriptionInput
impl Unpin for UpdatePullRequestDescriptionInput
impl UnwindSafe for UpdatePullRequestDescriptionInput
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