pub struct EmojiConfig {
pub replace_task_emojis: Option<bool>,
pub remove_other_emojis: Option<bool>,
pub file_extensions: Option<Vec<String>>,
pub recursive: Option<bool>,
}Expand description
Configuration for the emojis step.
Fields§
§replace_task_emojis: Option<bool>§remove_other_emojis: Option<bool>§file_extensions: Option<Vec<String>>§recursive: Option<bool>Trait Implementations§
Source§impl Clone for EmojiConfig
impl Clone for EmojiConfig
Source§fn clone(&self) -> EmojiConfig
fn clone(&self) -> EmojiConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 EmojiConfig
impl Debug for EmojiConfig
Source§impl Default for EmojiConfig
impl Default for EmojiConfig
Source§fn default() -> EmojiConfig
fn default() -> EmojiConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmojiConfig
impl<'de> Deserialize<'de> for EmojiConfig
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 EmojiConfig
impl RefUnwindSafe for EmojiConfig
impl Send for EmojiConfig
impl Sync for EmojiConfig
impl Unpin for EmojiConfig
impl UnsafeUnpin for EmojiConfig
impl UnwindSafe for EmojiConfig
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