pub struct PullRequestOptions {
pub repo_root: PathBuf,
pub owner: String,
pub repo: String,
pub base_branch: Option<String>,
pub branch_name: Option<String>,
pub labels: Vec<String>,
pub title: String,
pub commit_message: String,
}Fields§
§repo_root: PathBuf§owner: String§repo: String§base_branch: Option<String>§branch_name: Option<String>§labels: Vec<String>§title: String§commit_message: StringTrait Implementations§
Source§impl Clone for PullRequestOptions
impl Clone for PullRequestOptions
Source§fn clone(&self) -> PullRequestOptions
fn clone(&self) -> PullRequestOptions
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 moreSource§impl Debug for PullRequestOptions
impl Debug for PullRequestOptions
impl Eq for PullRequestOptions
Source§impl PartialEq for PullRequestOptions
impl PartialEq for PullRequestOptions
impl StructuralPartialEq for PullRequestOptions
Auto Trait Implementations§
impl Freeze for PullRequestOptions
impl RefUnwindSafe for PullRequestOptions
impl Send for PullRequestOptions
impl Sync for PullRequestOptions
impl Unpin for PullRequestOptions
impl UnsafeUnpin for PullRequestOptions
impl UnwindSafe for PullRequestOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.