pub struct PullreqChecksOutput {
pub checks: Vec<PullreqCheck>,
pub commit_sha: String,
}Fields§
§checks: Vec<PullreqCheck>§commit_sha: StringImplementations§
Source§impl PullreqChecksOutput
impl PullreqChecksOutput
pub fn new(checks: Vec<PullreqCheck>, commit_sha: String) -> PullreqChecksOutput
Trait Implementations§
Source§impl Clone for PullreqChecksOutput
impl Clone for PullreqChecksOutput
Source§fn clone(&self) -> PullreqChecksOutput
fn clone(&self) -> PullreqChecksOutput
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 PullreqChecksOutput
impl Debug for PullreqChecksOutput
Source§impl Default for PullreqChecksOutput
impl Default for PullreqChecksOutput
Source§fn default() -> PullreqChecksOutput
fn default() -> PullreqChecksOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullreqChecksOutput
impl<'de> Deserialize<'de> for PullreqChecksOutput
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 PullreqChecksOutput
impl PartialEq for PullreqChecksOutput
Source§impl Serialize for PullreqChecksOutput
impl Serialize for PullreqChecksOutput
impl StructuralPartialEq for PullreqChecksOutput
Auto Trait Implementations§
impl Freeze for PullreqChecksOutput
impl RefUnwindSafe for PullreqChecksOutput
impl Send for PullreqChecksOutput
impl Sync for PullreqChecksOutput
impl Unpin for PullreqChecksOutput
impl UnwindSafe for PullreqChecksOutput
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