pub struct CheckerConfig<V> {
pub config: HashMap<String, V>,
pub lints: HashMap<String, LintVariation>,
pub std: Option<String>,
pub exclude: Vec<String>,
pub roblox_std_source: RobloxStdSource,
}
Fields§
§config: HashMap<String, V>
§lints: HashMap<String, LintVariation>
§std: Option<String>
§exclude: Vec<String>
§roblox_std_source: RobloxStdSource
Implementations§
Trait Implementations§
Source§impl<V> Default for CheckerConfig<V>
impl<V> Default for CheckerConfig<V>
Source§impl<'de, V> Deserialize<'de> for CheckerConfig<V>
impl<'de, V> Deserialize<'de> for CheckerConfig<V>
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<V> Freeze for CheckerConfig<V>
impl<V> RefUnwindSafe for CheckerConfig<V>where
V: RefUnwindSafe,
impl<V> Send for CheckerConfig<V>where
V: Send,
impl<V> Sync for CheckerConfig<V>where
V: Sync,
impl<V> Unpin for CheckerConfig<V>where
V: Unpin,
impl<V> UnwindSafe for CheckerConfig<V>where
V: UnwindSafe,
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