pub struct ExtractorsConfig {
pub enabled: Vec<String>,
pub order: Vec<String>,
}Expand description
Configuration for recipe extractors
Fields§
§enabled: Vec<String>List of enabled extractors
order: Vec<String>Order in which extractors should be tried
Trait Implementations§
Source§impl Clone for ExtractorsConfig
impl Clone for ExtractorsConfig
Source§fn clone(&self) -> ExtractorsConfig
fn clone(&self) -> ExtractorsConfig
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 ExtractorsConfig
impl Debug for ExtractorsConfig
Source§impl Default for ExtractorsConfig
impl Default for ExtractorsConfig
Source§fn default() -> ExtractorsConfig
fn default() -> ExtractorsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtractorsConfig
impl<'de> Deserialize<'de> for ExtractorsConfig
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 ExtractorsConfig
impl RefUnwindSafe for ExtractorsConfig
impl Send for ExtractorsConfig
impl Sync for ExtractorsConfig
impl Unpin for ExtractorsConfig
impl UnsafeUnpin for ExtractorsConfig
impl UnwindSafe for ExtractorsConfig
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