pub struct GitPullRequest {
pub remote: Option<String>,
pub branch: Option<String>,
pub rebase: Option<bool>,
pub auth_token: Option<String>,
pub ssh_key: Option<String>,
}Expand description
Git pull request
Fields§
§remote: Option<String>§branch: Option<String>§rebase: Option<bool>§auth_token: Option<String>§ssh_key: Option<String>Trait Implementations§
Source§impl Clone for GitPullRequest
impl Clone for GitPullRequest
Source§fn clone(&self) -> GitPullRequest
fn clone(&self) -> GitPullRequest
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 GitPullRequest
impl Debug for GitPullRequest
Source§impl<'de> Deserialize<'de> for GitPullRequest
impl<'de> Deserialize<'de> for GitPullRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GitPullRequest
impl RefUnwindSafe for GitPullRequest
impl Send for GitPullRequest
impl Sync for GitPullRequest
impl Unpin for GitPullRequest
impl UnwindSafe for GitPullRequest
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