pub struct PullRequestMergeResult {
pub sha: String,
pub merged: bool,
pub message: String,
}
Expand description
PullRequestMergeResult : Pull Request Merge Result
Fields§
§sha: String
§merged: bool
§message: String
Implementations§
Trait Implementations§
Source§impl Clone for PullRequestMergeResult
impl Clone for PullRequestMergeResult
Source§fn clone(&self) -> PullRequestMergeResult
fn clone(&self) -> PullRequestMergeResult
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 PullRequestMergeResult
impl Debug for PullRequestMergeResult
Source§impl Default for PullRequestMergeResult
impl Default for PullRequestMergeResult
Source§fn default() -> PullRequestMergeResult
fn default() -> PullRequestMergeResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestMergeResult
impl<'de> Deserialize<'de> for PullRequestMergeResult
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
Source§impl PartialEq for PullRequestMergeResult
impl PartialEq for PullRequestMergeResult
Source§impl Serialize for PullRequestMergeResult
impl Serialize for PullRequestMergeResult
impl StructuralPartialEq for PullRequestMergeResult
Auto Trait Implementations§
impl Freeze for PullRequestMergeResult
impl RefUnwindSafe for PullRequestMergeResult
impl Send for PullRequestMergeResult
impl Sync for PullRequestMergeResult
impl Unpin for PullRequestMergeResult
impl UnwindSafe for PullRequestMergeResult
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