pub struct CheckRunOptions {
pub name: String,
pub head_sha: String,
pub details_url: Option<String>,
pub external_id: Option<String>,
pub status: Option<CheckRunState>,
pub started_at: Option<String>,
pub conclusion: Option<Conclusion>,
pub completed_at: Option<String>,
pub output: Option<Output>,
pub actions: Option<Vec<Action>>,
}Fields§
§name: String§head_sha: String§details_url: Option<String>§external_id: Option<String>§status: Option<CheckRunState>§started_at: Option<String>§conclusion: Option<Conclusion>§completed_at: Option<String>§output: Option<Output>§actions: Option<Vec<Action>>Trait Implementations§
Source§impl Debug for CheckRunOptions
impl Debug for CheckRunOptions
Source§impl PartialEq for CheckRunOptions
impl PartialEq for CheckRunOptions
Source§impl Serialize for CheckRunOptions
impl Serialize for CheckRunOptions
impl StructuralPartialEq for CheckRunOptions
Auto Trait Implementations§
impl Freeze for CheckRunOptions
impl RefUnwindSafe for CheckRunOptions
impl Send for CheckRunOptions
impl Sync for CheckRunOptions
impl Unpin for CheckRunOptions
impl UnwindSafe for CheckRunOptions
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