pub struct UpdatePullRequestTitleInput {
pub pull_request_id: String,
pub title: String,
}Fields§
§pull_request_id: StringThe system-generated ID of the pull request. To get this ID, use ListPullRequests.
title: StringThe updated title of the pull request. This replaces the existing title.
Trait Implementations§
Source§impl Clone for UpdatePullRequestTitleInput
impl Clone for UpdatePullRequestTitleInput
Source§fn clone(&self) -> UpdatePullRequestTitleInput
fn clone(&self) -> UpdatePullRequestTitleInput
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 Debug for UpdatePullRequestTitleInput
impl Debug for UpdatePullRequestTitleInput
Source§impl Default for UpdatePullRequestTitleInput
impl Default for UpdatePullRequestTitleInput
Source§fn default() -> UpdatePullRequestTitleInput
fn default() -> UpdatePullRequestTitleInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdatePullRequestTitleInput
Auto Trait Implementations§
impl Freeze for UpdatePullRequestTitleInput
impl RefUnwindSafe for UpdatePullRequestTitleInput
impl Send for UpdatePullRequestTitleInput
impl Sync for UpdatePullRequestTitleInput
impl Unpin for UpdatePullRequestTitleInput
impl UnwindSafe for UpdatePullRequestTitleInput
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