pub struct Identifier<'t>(/* private fields */);Expand description
The name given to a variable
Implementations§
Trait Implementations§
Source§impl<'t> Clone for Identifier<'t>
impl<'t> Clone for Identifier<'t>
Source§fn clone(&self) -> Identifier<'t>
fn clone(&self) -> Identifier<'t>
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<'t> Debug for Identifier<'t>
impl<'t> Debug for Identifier<'t>
Source§impl Display for Identifier<'_>
impl Display for Identifier<'_>
Source§impl<'a> From<&'a str> for Identifier<'a>
impl<'a> From<&'a str> for Identifier<'a>
Source§impl<'a> From<Identifier<'a>> for Expression<'a>
impl<'a> From<Identifier<'a>> for Expression<'a>
Source§fn from(identifier: Identifier<'a>) -> Self
fn from(identifier: Identifier<'a>) -> Self
Converts to this type from the input type.
Source§impl<'t> Hash for Identifier<'t>
impl<'t> Hash for Identifier<'t>
Source§impl<'t> Ord for Identifier<'t>
impl<'t> Ord for Identifier<'t>
Source§fn cmp(&self, other: &Identifier<'t>) -> Ordering
fn cmp(&self, other: &Identifier<'t>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'t> PartialEq for Identifier<'t>
impl<'t> PartialEq for Identifier<'t>
Source§impl<'t> PartialOrd for Identifier<'t>
impl<'t> PartialOrd for Identifier<'t>
impl<'t> Copy for Identifier<'t>
impl<'t> Eq for Identifier<'t>
impl<'t> StructuralPartialEq for Identifier<'t>
Auto Trait Implementations§
impl<'t> Freeze for Identifier<'t>
impl<'t> RefUnwindSafe for Identifier<'t>
impl<'t> Send for Identifier<'t>
impl<'t> Sync for Identifier<'t>
impl<'t> Unpin for Identifier<'t>
impl<'t> UnwindSafe for Identifier<'t>
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