pub struct CheckRunOutput { /* private fields */ }
Expand description
Check run output
Integrations can provide additional context for a completed check run in the check run’s output. The output has a title and a summary, which supports Markdown. It can optionally have a text with more details, and annotations.
Implementations§
Source§impl CheckRunOutput
impl CheckRunOutput
Sourcepub fn title(&self) -> &CheckRunOutputTitle
pub fn title(&self) -> &CheckRunOutputTitle
Returns the check run output’s title.
Sourcepub fn summary(&self) -> &CheckRunOutputSummary
pub fn summary(&self) -> &CheckRunOutputSummary
Returns the check run output’s summary.
Sourcepub fn annotations_count(&self) -> u64
pub fn annotations_count(&self) -> u64
Returns the check run output’s annotations count.
Sourcepub fn annotations_url(&self) -> &Url
pub fn annotations_url(&self) -> &Url
Returns the API endpoint to query the check run output’s annotations.
Trait Implementations§
Source§impl Clone for CheckRunOutput
impl Clone for CheckRunOutput
Source§fn clone(&self) -> CheckRunOutput
fn clone(&self) -> CheckRunOutput
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 CheckRunOutput
impl Debug for CheckRunOutput
Source§impl<'de> Deserialize<'de> for CheckRunOutput
impl<'de> Deserialize<'de> for CheckRunOutput
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 Display for CheckRunOutput
impl Display for CheckRunOutput
Source§impl Hash for CheckRunOutput
impl Hash for CheckRunOutput
Source§impl Ord for CheckRunOutput
impl Ord for CheckRunOutput
Source§fn cmp(&self, other: &CheckRunOutput) -> Ordering
fn cmp(&self, other: &CheckRunOutput) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CheckRunOutput
impl PartialEq for CheckRunOutput
Source§impl PartialOrd for CheckRunOutput
impl PartialOrd for CheckRunOutput
Source§impl Serialize for CheckRunOutput
impl Serialize for CheckRunOutput
impl Eq for CheckRunOutput
impl StructuralPartialEq for CheckRunOutput
Auto Trait Implementations§
impl Freeze for CheckRunOutput
impl RefUnwindSafe for CheckRunOutput
impl Send for CheckRunOutput
impl Sync for CheckRunOutput
impl Unpin for CheckRunOutput
impl UnwindSafe for CheckRunOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.