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