pub struct KeyspaceQualifiedName {
pub keyspace: Option<Name>,
pub name: Name,
}
Fields§
§keyspace: Option<Name>
§name: Name
Trait Implementations§
Source§impl Clone for KeyspaceQualifiedName
impl Clone for KeyspaceQualifiedName
Source§fn clone(&self) -> KeyspaceQualifiedName
fn clone(&self) -> KeyspaceQualifiedName
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for KeyspaceQualifiedName
impl<'a> CustomToTokens<'a> for KeyspaceQualifiedName
Source§impl Debug for KeyspaceQualifiedName
impl Debug for KeyspaceQualifiedName
Source§impl Display for KeyspaceQualifiedName
impl Display for KeyspaceQualifiedName
Source§impl From<&str> for KeyspaceQualifiedName
impl From<&str> for KeyspaceQualifiedName
Source§impl From<KeyspaceQualifiedName> for CqlType
impl From<KeyspaceQualifiedName> for CqlType
Source§fn from(original: UserDefinedType) -> CqlType
fn from(original: UserDefinedType) -> CqlType
Converts to this type from the input type.
Source§impl From<KeyspaceQualifiedName> for FunctionReference
impl From<KeyspaceQualifiedName> for FunctionReference
Source§fn from(name: FunctionName) -> Self
fn from(name: FunctionName) -> Self
Converts to this type from the input type.
Source§impl From<String> for KeyspaceQualifiedName
impl From<String> for KeyspaceQualifiedName
Source§impl FromStr for KeyspaceQualifiedName
impl FromStr for KeyspaceQualifiedName
Source§impl Hash for KeyspaceQualifiedName
impl Hash for KeyspaceQualifiedName
Source§impl Ord for KeyspaceQualifiedName
impl Ord for KeyspaceQualifiedName
Source§fn cmp(&self, other: &KeyspaceQualifiedName) -> Ordering
fn cmp(&self, other: &KeyspaceQualifiedName) -> 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 Parse for KeyspaceQualifiedName
impl Parse for KeyspaceQualifiedName
type Output = KeyspaceQualifiedName
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for KeyspaceQualifiedName
impl PartialEq for KeyspaceQualifiedName
Source§impl PartialOrd for KeyspaceQualifiedName
impl PartialOrd for KeyspaceQualifiedName
Source§impl ToTokens for KeyspaceQualifiedName
impl ToTokens for KeyspaceQualifiedName
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for KeyspaceQualifiedName
impl StructuralPartialEq for KeyspaceQualifiedName
Auto Trait Implementations§
impl Freeze for KeyspaceQualifiedName
impl RefUnwindSafe for KeyspaceQualifiedName
impl Send for KeyspaceQualifiedName
impl Sync for KeyspaceQualifiedName
impl Unpin for KeyspaceQualifiedName
impl UnwindSafe for KeyspaceQualifiedName
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