pub struct Verification {
pub checks_run: Vec<CheckRun>,
pub checks_passed: Vec<String>,
pub checks_failed: Vec<String>,
pub required_checks_missing: Vec<String>,
}Fields§
§checks_run: Vec<CheckRun>§checks_passed: Vec<String>§checks_failed: Vec<String>§required_checks_missing: Vec<String>Trait Implementations§
Source§impl Clone for Verification
impl Clone for Verification
Source§fn clone(&self) -> Verification
fn clone(&self) -> Verification
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 Verification
impl Debug for Verification
Source§impl Default for Verification
impl Default for Verification
Source§fn default() -> Verification
fn default() -> Verification
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Verification
impl RefUnwindSafe for Verification
impl Send for Verification
impl Sync for Verification
impl Unpin for Verification
impl UnsafeUnpin for Verification
impl UnwindSafe for Verification
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