pub struct PullRequestMeta {
pub draft: Option<bool>,
pub html_url: Option<String>,
pub merged: Option<bool>,
pub merged_at: Option<String>,
}
Expand description
PullRequestMeta : PullRequestMeta PR info if an issue is a PR
Fields§
§draft: Option<bool>
§html_url: Option<String>
§merged: Option<bool>
§merged_at: Option<String>
Implementations§
Source§impl PullRequestMeta
impl PullRequestMeta
Sourcepub fn new() -> PullRequestMeta
pub fn new() -> PullRequestMeta
PullRequestMeta PR info if an issue is a PR
Trait Implementations§
Source§impl Clone for PullRequestMeta
impl Clone for PullRequestMeta
Source§fn clone(&self) -> PullRequestMeta
fn clone(&self) -> PullRequestMeta
Returns a copy 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 PullRequestMeta
impl Debug for PullRequestMeta
Source§impl Default for PullRequestMeta
impl Default for PullRequestMeta
Source§fn default() -> PullRequestMeta
fn default() -> PullRequestMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestMeta
impl<'de> Deserialize<'de> for PullRequestMeta
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 PullRequestMeta
impl PartialEq for PullRequestMeta
Source§impl Serialize for PullRequestMeta
impl Serialize for PullRequestMeta
impl StructuralPartialEq for PullRequestMeta
Auto Trait Implementations§
impl Freeze for PullRequestMeta
impl RefUnwindSafe for PullRequestMeta
impl Send for PullRequestMeta
impl Sync for PullRequestMeta
impl Unpin for PullRequestMeta
impl UnwindSafe for PullRequestMeta
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