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
impl Ident
impl Ident
pub fn new<S>(value: S) -> Ident where
S: Into<String>,
pub fn new<S>(value: S) -> Ident where
S: Into<String>,
Create a new identifier with the given value and no quotes.
pub fn with_quote<S>(quote: char, value: S) -> Ident where
S: Into<String>,
pub fn with_quote<S>(quote: char, value: S) -> Ident where
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<'de> Deserialize<'de> for Ident
impl<'de> Deserialize<'de> for Ident
fn deserialize<__D>(
__deserializer: __D
) -> Result<Ident, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Ident, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<Ident> for Ident
impl PartialEq<Ident> for Ident
impl Serialize for Ident
impl Serialize for Ident
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.