pub struct ShellcheckSettings {
pub mode: Option<String>,
pub exclude: Vec<String>,
}Expand description
Optional external ShellCheck integration. It is deliberately separate from policy settings because it applies to the complete Dockerfile scan.
Fields§
§mode: Option<String>§exclude: Vec<String>Trait Implementations§
Source§impl Clone for ShellcheckSettings
impl Clone for ShellcheckSettings
Source§fn clone(&self) -> ShellcheckSettings
fn clone(&self) -> ShellcheckSettings
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 moreSource§impl Debug for ShellcheckSettings
impl Debug for ShellcheckSettings
Source§impl Default for ShellcheckSettings
impl Default for ShellcheckSettings
Source§fn default() -> ShellcheckSettings
fn default() -> ShellcheckSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShellcheckSettings
impl<'de> Deserialize<'de> for ShellcheckSettings
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
Auto Trait Implementations§
impl Freeze for ShellcheckSettings
impl RefUnwindSafe for ShellcheckSettings
impl Send for ShellcheckSettings
impl Sync for ShellcheckSettings
impl Unpin for ShellcheckSettings
impl UnsafeUnpin for ShellcheckSettings
impl UnwindSafe for ShellcheckSettings
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