pub struct CiInstallOptions<'a> {
pub fail_on: &'a str,
pub ignore_tests: bool,
pub scan_path: &'a str,
pub baseline_path: Option<&'a str>,
pub upload_sarif: bool,
}Fields§
§fail_on: &'a str§ignore_tests: bool§scan_path: &'a str§baseline_path: Option<&'a str>§upload_sarif: boolTrait Implementations§
Source§impl<'a> Clone for CiInstallOptions<'a>
impl<'a> Clone for CiInstallOptions<'a>
Source§fn clone(&self) -> CiInstallOptions<'a>
fn clone(&self) -> CiInstallOptions<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for CiInstallOptions<'a>
impl<'a> RefUnwindSafe for CiInstallOptions<'a>
impl<'a> Send for CiInstallOptions<'a>
impl<'a> Sync for CiInstallOptions<'a>
impl<'a> Unpin for CiInstallOptions<'a>
impl<'a> UnsafeUnpin for CiInstallOptions<'a>
impl<'a> UnwindSafe for CiInstallOptions<'a>
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