Struct DynIden
pub struct DynIden(/* private fields */);Expand description
A prepared (quoted) identifier string.
The naming is legacy and kept for compatibility.
This used to be an alias for a dyn Iden object that’s lazily rendered later.
Nowadays, it’s an eagerly-rendered string. Most identifiers are static strings that aren’t “rendered” at runtime anyway.
Implementations§
Trait Implementations§
impl Eq for DynIden
impl StructuralPartialEq for DynIden
Auto Trait Implementations§
impl Freeze for DynIden
impl RefUnwindSafe for DynIden
impl Send for DynIden
impl Sync for DynIden
impl Unpin for DynIden
impl UnwindSafe for DynIden
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> IntoColumnRef for T
impl<T> IntoColumnRef for T
fn into_column_ref(self) -> ColumnRef
§impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
fn into_index_column(self) -> IndexColumn
§impl<T> IntoTableRef for T
impl<T> IntoTableRef for T
fn into_table_ref(self) -> TableRef
§impl<T> IntoTypeRef for T
impl<T> IntoTypeRef for T
fn into_type_ref(self) -> TypeRef
§impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
§fn into_2_parts(self) -> (Option<DynIden>, DynIden)
fn into_2_parts(self) -> (Option<DynIden>, DynIden)
Represent a maybe-qualified name as a
(foo?, bar) tuple.