Struct diskplan_schema::Identifier
source · 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 copy 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§fn eq(&self, other: &Identifier<'t>) -> bool
fn eq(&self, other: &Identifier<'t>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'t> PartialOrd for Identifier<'t>
impl<'t> PartialOrd for Identifier<'t>
source§fn partial_cmp(&self, other: &Identifier<'t>) -> Option<Ordering>
fn partial_cmp(&self, other: &Identifier<'t>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<'t> Copy for Identifier<'t>
impl<'t> Eq for Identifier<'t>
impl<'t> StructuralEq for Identifier<'t>
impl<'t> StructuralPartialEq for Identifier<'t>
Auto Trait Implementations§
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