pub struct CheckRunOutputArgs {
pub title: CheckRunOutputTitle,
pub summary: CheckRunOutputSummary,
pub text: Option<String>,
}
Expand description
Input for check run output
Check runs can accept a variety of data in the output
object, including a title
and
summary
and can optionally provide descriptive details about the run.
https://docs.github.com/en/rest/checks/runs#update-a-check-run
Fields§
§title: CheckRunOutputTitle
The title of the check run output.
summary: CheckRunOutputSummary
The summary of the check run output.
text: Option<String>
The text with descriptive details about the check run.
Trait Implementations§
Source§impl Clone for CheckRunOutputArgs
impl Clone for CheckRunOutputArgs
Source§fn clone(&self) -> CheckRunOutputArgs
fn clone(&self) -> CheckRunOutputArgs
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 CheckRunOutputArgs
impl Debug for CheckRunOutputArgs
Source§impl Hash for CheckRunOutputArgs
impl Hash for CheckRunOutputArgs
Source§impl Ord for CheckRunOutputArgs
impl Ord for CheckRunOutputArgs
Source§fn cmp(&self, other: &CheckRunOutputArgs) -> Ordering
fn cmp(&self, other: &CheckRunOutputArgs) -> 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 CheckRunOutputArgs
impl PartialEq for CheckRunOutputArgs
Source§impl PartialOrd for CheckRunOutputArgs
impl PartialOrd for CheckRunOutputArgs
Source§impl Serialize for CheckRunOutputArgs
impl Serialize for CheckRunOutputArgs
impl Eq for CheckRunOutputArgs
impl StructuralPartialEq for CheckRunOutputArgs
Auto Trait Implementations§
impl Freeze for CheckRunOutputArgs
impl RefUnwindSafe for CheckRunOutputArgs
impl Send for CheckRunOutputArgs
impl Sync for CheckRunOutputArgs
impl Unpin for CheckRunOutputArgs
impl UnwindSafe for CheckRunOutputArgs
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.