pub struct WebCommitCherryPick {
pub cherry_pick_commit: Option<Value>,
pub pull_request_number: Option<String>,
pub cherry_pick_ref: Option<String>,
pub has_conflicts: Option<bool>,
}
Expand description
WebCommitCherryPick 模型
Fields§
§cherry_pick_commit: Option<Value>
§pull_request_number: Option<String>
§cherry_pick_ref: Option<String>
§has_conflicts: Option<bool>
Trait Implementations§
Source§impl Clone for WebCommitCherryPick
impl Clone for WebCommitCherryPick
Source§fn clone(&self) -> WebCommitCherryPick
fn clone(&self) -> WebCommitCherryPick
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 WebCommitCherryPick
impl Debug for WebCommitCherryPick
Source§impl<'de> Deserialize<'de> for WebCommitCherryPick
impl<'de> Deserialize<'de> for WebCommitCherryPick
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 WebCommitCherryPick
impl RefUnwindSafe for WebCommitCherryPick
impl Send for WebCommitCherryPick
impl Sync for WebCommitCherryPick
impl Unpin for WebCommitCherryPick
impl UnwindSafe for WebCommitCherryPick
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