Expand description
An identifier, decomposed into its value or character data and the quote style.
Fields
value: String
The value of the identifier without quotes.
quote_style: Option<char>
The starting quote if any. Valid quote characters are the single quote, double quote, backtick, and opening square bracket.
Implementations
sourceimpl Ident
impl Ident
sourcepub fn new<S>(value: S) -> Selfwhere
S: Into<String>,
pub fn new<S>(value: S) -> Selfwhere
S: Into<String>,
Create a new identifier with the given value and no quotes.
sourcepub fn with_quote<S>(quote: char, value: S) -> Selfwhere
S: Into<String>,
pub fn with_quote<S>(quote: char, value: S) -> Selfwhere
S: Into<String>,
Create a new quoted identifier with the given quote and value. This function panics if the given quote is not a valid quote character.
Trait Implementations
impl Eq for Ident
impl StructuralEq for Ident
impl StructuralPartialEq for Ident
Auto Trait Implementations
impl RefUnwindSafe for Ident
impl Send for Ident
impl Sync for Ident
impl Unpin for Ident
impl UnwindSafe for Ident
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more