pub struct IdentifierQuoteStyle {
pub start: char,
pub end: char,
}Expand description
Identifier quote style (start/end characters)
Fields§
§start: charStart character for quoting identifiers (e.g., ‘“’, ‘`’, ‘[’)
end: charEnd character for quoting identifiers (e.g., ‘“’, ‘`’, ‘]’)
Implementations§
Trait Implementations§
Source§impl Clone for IdentifierQuoteStyle
impl Clone for IdentifierQuoteStyle
Source§fn clone(&self) -> IdentifierQuoteStyle
fn clone(&self) -> IdentifierQuoteStyle
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 IdentifierQuoteStyle
impl Debug for IdentifierQuoteStyle
Source§impl Default for IdentifierQuoteStyle
impl Default for IdentifierQuoteStyle
Source§impl PartialEq for IdentifierQuoteStyle
impl PartialEq for IdentifierQuoteStyle
impl Copy for IdentifierQuoteStyle
impl StructuralPartialEq for IdentifierQuoteStyle
Auto Trait Implementations§
impl Freeze for IdentifierQuoteStyle
impl RefUnwindSafe for IdentifierQuoteStyle
impl Send for IdentifierQuoteStyle
impl Sync for IdentifierQuoteStyle
impl Unpin for IdentifierQuoteStyle
impl UnwindSafe for IdentifierQuoteStyle
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