pub struct ConfigStopwords {
pub allow: HashSet<String>,
pub deny: HashSet<String>,
}Fields§
§allow: HashSet<String>§deny: HashSet<String>Trait Implementations§
Source§impl Clone for ConfigStopwords
impl Clone for ConfigStopwords
Source§fn clone(&self) -> ConfigStopwords
fn clone(&self) -> ConfigStopwords
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 Default for ConfigStopwords
impl Default for ConfigStopwords
Source§fn default() -> ConfigStopwords
fn default() -> ConfigStopwords
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigStopwords
impl<'de> Deserialize<'de> for ConfigStopwords
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 ConfigStopwords
impl RefUnwindSafe for ConfigStopwords
impl Send for ConfigStopwords
impl Sync for ConfigStopwords
impl Unpin for ConfigStopwords
impl UnsafeUnpin for ConfigStopwords
impl UnwindSafe for ConfigStopwords
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