pub enum ReservedKeyword {
Show 55 variants
ADD,
ALLOW,
ALTER,
AND,
APPLY,
ASC,
AUTHORIZE,
BATCH,
BEGIN,
BY,
COLUMNFAMILY,
CREATE,
DELETE,
DESC,
DESCRIBE,
DROP,
ENTRIES,
EXECUTE,
FROM,
FULL,
GRANT,
IF,
IN,
INDEX,
INFINITY,
INSERT,
INTO,
KEYSPACE,
LIMIT,
MODIFY,
NAN,
NORECURSIVE,
NOT,
NULL,
OF,
ON,
OR,
ORDER,
PRIMARY,
RENAME,
REPLACE,
REVOKE,
SCHEMA,
SELECT,
SET,
TABLE,
TO,
TRUNCATE,
UNLOGGED,
UPDATE,
USE,
USING,
VIEW,
WHERE,
WITH,
}
Variants§
ADD
ALLOW
ALTER
AND
APPLY
ASC
AUTHORIZE
BATCH
BEGIN
BY
COLUMNFAMILY
CREATE
DELETE
DESC
DESCRIBE
DROP
ENTRIES
EXECUTE
FROM
FULL
GRANT
IF
IN
INDEX
INFINITY
INSERT
INTO
KEYSPACE
LIMIT
MODIFY
NAN
NORECURSIVE
NOT
NULL
OF
ON
OR
ORDER
PRIMARY
RENAME
REPLACE
REVOKE
SCHEMA
SELECT
SET
TABLE
TO
TRUNCATE
UNLOGGED
UPDATE
USE
USING
VIEW
WHERE
WITH
Trait Implementations§
Source§impl Clone for ReservedKeyword
impl Clone for ReservedKeyword
Source§fn clone(&self) -> ReservedKeyword
fn clone(&self) -> ReservedKeyword
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 ReservedKeyword
impl<'a> CustomToTokens<'a> for ReservedKeyword
Source§impl Debug for ReservedKeyword
impl Debug for ReservedKeyword
Source§impl Display for ReservedKeyword
impl Display for ReservedKeyword
Source§impl FromStr for ReservedKeyword
impl FromStr for ReservedKeyword
Source§impl Hash for ReservedKeyword
impl Hash for ReservedKeyword
Source§impl Parse for ReservedKeyword
impl Parse for ReservedKeyword
type Output = ReservedKeyword
fn parse(s: &mut StatementStream<'_>) -> Result<Self>where
Self: Sized,
Source§impl PartialEq for ReservedKeyword
impl PartialEq for ReservedKeyword
Source§impl ToTokens for ReservedKeyword
impl ToTokens for ReservedKeyword
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 Copy for ReservedKeyword
impl Eq for ReservedKeyword
impl StructuralPartialEq for ReservedKeyword
Auto Trait Implementations§
impl Freeze for ReservedKeyword
impl RefUnwindSafe for ReservedKeyword
impl Send for ReservedKeyword
impl Sync for ReservedKeyword
impl Unpin for ReservedKeyword
impl UnwindSafe for ReservedKeyword
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