Struct forgejo_api::structs::PullRequestMeta
source · pub struct PullRequestMeta {
pub merged: Option<bool>,
pub merged_at: Option<OffsetDateTime>,
}Expand description
PullRequestMeta PR info if an issue is a PR
Fields§
§merged: Option<bool>§merged_at: Option<OffsetDateTime>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<'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§fn eq(&self, other: &PullRequestMeta) -> bool
fn eq(&self, other: &PullRequestMeta) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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