pub struct CheckRunOutput {
pub title: Option<String>,
pub summary: Option<String>,
pub text: Option<String>,
pub annotations_count: i32,
pub annotations_url: String,
}
Fields§
§title: Option<String>
§summary: Option<String>
§text: Option<String>
§annotations_count: i32
§annotations_url: String
Implementations§
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 Default for CheckRunOutput
impl Default for CheckRunOutput
Source§fn default() -> CheckRunOutput
fn default() -> CheckRunOutput
Returns the “default value” for a type. Read more
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 PartialEq for CheckRunOutput
impl PartialEq for CheckRunOutput
Source§impl Serialize for CheckRunOutput
impl Serialize 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