Struct automatons_github::resource::CheckRunOutput
source · [−]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
sourceimpl 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
sourceimpl Clone for CheckRunOutput
impl Clone for CheckRunOutput
sourcefn clone(&self) -> CheckRunOutput
fn clone(&self) -> CheckRunOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CheckRunOutput
impl Debug for CheckRunOutput
sourceimpl<'de> Deserialize<'de> for CheckRunOutput
impl<'de> Deserialize<'de> for CheckRunOutput
sourcefn 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
sourceimpl Display for CheckRunOutput
impl Display for CheckRunOutput
sourceimpl Hash for CheckRunOutput
impl Hash for CheckRunOutput
sourceimpl Ord for CheckRunOutput
impl Ord for CheckRunOutput
sourcefn cmp(&self, other: &CheckRunOutput) -> Ordering
fn cmp(&self, other: &CheckRunOutput) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<CheckRunOutput> for CheckRunOutput
impl PartialEq<CheckRunOutput> for CheckRunOutput
sourcefn eq(&self, other: &CheckRunOutput) -> bool
fn eq(&self, other: &CheckRunOutput) -> bool
sourceimpl PartialOrd<CheckRunOutput> for CheckRunOutput
impl PartialOrd<CheckRunOutput> for CheckRunOutput
sourcefn partial_cmp(&self, other: &CheckRunOutput) -> Option<Ordering>
fn partial_cmp(&self, other: &CheckRunOutput) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl Serialize for CheckRunOutput
impl Serialize for CheckRunOutput
impl Eq for CheckRunOutput
impl StructuralEq for CheckRunOutput
impl StructuralPartialEq for CheckRunOutput
Auto Trait Implementations
impl RefUnwindSafe for CheckRunOutput
impl Send for CheckRunOutput
impl Sync for CheckRunOutput
impl Unpin for CheckRunOutput
impl UnwindSafe for CheckRunOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.