pub struct PrivilegeObjects { /* private fields */ }Implementations§
Source§impl PrivilegeObjects
impl PrivilegeObjects
pub fn function_sig_list(&self) -> Option<FunctionSigList>
pub fn literals(&self) -> AstChildren<Literal> ⓘ
pub fn name_refs(&self) -> AstChildren<NameRef> ⓘ
pub fn paths(&self) -> AstChildren<Path> ⓘ
pub fn types(&self) -> AstChildren<Type> ⓘ
pub fn all_token(&self) -> Option<SyntaxToken>
pub fn data_token(&self) -> Option<SyntaxToken>
pub fn database_token(&self) -> Option<SyntaxToken>
pub fn domain_token(&self) -> Option<SyntaxToken>
pub fn foreign_token(&self) -> Option<SyntaxToken>
pub fn function_token(&self) -> Option<SyntaxToken>
pub fn functions_token(&self) -> Option<SyntaxToken>
pub fn graph_token(&self) -> Option<SyntaxToken>
pub fn in_token(&self) -> Option<SyntaxToken>
pub fn language_token(&self) -> Option<SyntaxToken>
pub fn large_token(&self) -> Option<SyntaxToken>
pub fn object_token(&self) -> Option<SyntaxToken>
pub fn parameter_token(&self) -> Option<SyntaxToken>
pub fn procedure_token(&self) -> Option<SyntaxToken>
pub fn procedures_token(&self) -> Option<SyntaxToken>
pub fn property_token(&self) -> Option<SyntaxToken>
pub fn routine_token(&self) -> Option<SyntaxToken>
pub fn routines_token(&self) -> Option<SyntaxToken>
pub fn schema_token(&self) -> Option<SyntaxToken>
pub fn sequence_token(&self) -> Option<SyntaxToken>
pub fn sequences_token(&self) -> Option<SyntaxToken>
pub fn server_token(&self) -> Option<SyntaxToken>
pub fn table_token(&self) -> Option<SyntaxToken>
pub fn tables_token(&self) -> Option<SyntaxToken>
pub fn tablespace_token(&self) -> Option<SyntaxToken>
pub fn type_token(&self) -> Option<SyntaxToken>
pub fn wrapper_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for PrivilegeObjects
impl AstNode for PrivilegeObjects
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for PrivilegeObjects
impl Clone for PrivilegeObjects
Source§fn clone(&self) -> PrivilegeObjects
fn clone(&self) -> PrivilegeObjects
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrivilegeObjects
impl Debug for PrivilegeObjects
impl Eq for PrivilegeObjects
Source§impl Hash for PrivilegeObjects
impl Hash for PrivilegeObjects
Source§impl PartialEq for PrivilegeObjects
impl PartialEq for PrivilegeObjects
Source§fn eq(&self, other: &PrivilegeObjects) -> bool
fn eq(&self, other: &PrivilegeObjects) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivilegeObjects
Auto Trait Implementations§
impl !RefUnwindSafe for PrivilegeObjects
impl !Send for PrivilegeObjects
impl !Sync for PrivilegeObjects
impl !UnwindSafe for PrivilegeObjects
impl Freeze for PrivilegeObjects
impl Unpin for PrivilegeObjects
impl UnsafeUnpin for PrivilegeObjects
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more