pub struct StringConfig {
pub quotes: Vec<char>,
pub escape_char: Option<char>,
}Fields§
§quotes: Vec<char>§escape_char: Option<char>Trait Implementations§
Source§impl Clone for StringConfig
impl Clone for StringConfig
Source§fn clone(&self) -> StringConfig
fn clone(&self) -> StringConfig
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 StringConfig
impl Debug for StringConfig
Source§impl<'de> Deserialize<'de> for StringConfig
impl<'de> Deserialize<'de> for StringConfig
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
Source§impl PartialEq for StringConfig
impl PartialEq for StringConfig
Source§impl Serialize for StringConfig
impl Serialize for StringConfig
impl Eq for StringConfig
impl StructuralPartialEq for StringConfig
Auto Trait Implementations§
impl Freeze for StringConfig
impl RefUnwindSafe for StringConfig
impl Send for StringConfig
impl Sync for StringConfig
impl Unpin for StringConfig
impl UnwindSafe for StringConfig
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