pub struct DroastConfig {
pub extends: Vec<String>,
pub preset: Option<String>,
pub settings: PolicySettings,
pub shellcheck: ShellcheckSettings,
pub workflow: WorkflowSettings,
pub overrides: Vec<PathOverride>,
/* private fields */
}Fields§
§extends: Vec<String>§preset: Option<String>§settings: PolicySettings§shellcheck: ShellcheckSettings§workflow: WorkflowSettings§overrides: Vec<PathOverride>Implementations§
Trait Implementations§
Source§impl Clone for DroastConfig
impl Clone for DroastConfig
Source§fn clone(&self) -> DroastConfig
fn clone(&self) -> DroastConfig
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 DroastConfig
impl Debug for DroastConfig
Source§impl Default for DroastConfig
impl Default for DroastConfig
Source§fn default() -> DroastConfig
fn default() -> DroastConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DroastConfig
impl<'de> Deserialize<'de> for DroastConfig
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 DroastConfig
impl RefUnwindSafe for DroastConfig
impl Send for DroastConfig
impl Sync for DroastConfig
impl Unpin for DroastConfig
impl UnsafeUnpin for DroastConfig
impl UnwindSafe for DroastConfig
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