pub struct SarifDriver {
pub name: String,
pub version: String,
pub information_uri: String,
pub rules: Vec<SarifRule>,
}Expand description
SARIF tool driver (main component)
Fields§
§name: String§version: String§information_uri: String§rules: Vec<SarifRule>Trait Implementations§
Source§impl Clone for SarifDriver
impl Clone for SarifDriver
Source§fn clone(&self) -> SarifDriver
fn clone(&self) -> SarifDriver
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 SarifDriver
impl Debug for SarifDriver
Auto Trait Implementations§
impl Freeze for SarifDriver
impl RefUnwindSafe for SarifDriver
impl Send for SarifDriver
impl Sync for SarifDriver
impl Unpin for SarifDriver
impl UnsafeUnpin for SarifDriver
impl UnwindSafe for SarifDriver
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