pub enum ActionCreateObjectType {
Show 17 variants
Account,
Application,
ApplicationPackage,
ComputePool,
DataExchangeListing,
Database,
ExternalVolume,
FailoverGroup,
Integration,
NetworkPolicy,
OrganiationListing,
ReplicationGroup,
Role,
Schema,
Share,
User,
Warehouse,
}Expand description
See https://docs.snowflake.com/en/sql-reference/sql/grant-privilege
under globalPrivileges in the CREATE privilege.
Variants§
Account
An account-level object.
Application
An application object.
ApplicationPackage
An application package object.
ComputePool
A compute pool object.
DataExchangeListing
A data exchange listing.
Database
A database object.
ExternalVolume
An external volume object.
FailoverGroup
A failover group object.
Integration
An integration object.
NetworkPolicy
A network policy object.
OrganiationListing
An organization listing.
ReplicationGroup
A replication group object.
Role
A role object.
Schema
A schema object.
A share object.
User
A user object.
Warehouse
A warehouse object.
Trait Implementations§
Source§impl Clone for ActionCreateObjectType
impl Clone for ActionCreateObjectType
Source§fn clone(&self) -> ActionCreateObjectType
fn clone(&self) -> ActionCreateObjectType
Returns a duplicate 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 Debug for ActionCreateObjectType
impl Debug for ActionCreateObjectType
Source§impl<'de> Deserialize<'de> for ActionCreateObjectType
impl<'de> Deserialize<'de> for ActionCreateObjectType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ActionCreateObjectType
impl Display for ActionCreateObjectType
Source§impl Hash for ActionCreateObjectType
impl Hash for ActionCreateObjectType
Source§impl Ord for ActionCreateObjectType
impl Ord for ActionCreateObjectType
Source§fn cmp(&self, other: &ActionCreateObjectType) -> Ordering
fn cmp(&self, other: &ActionCreateObjectType) -> 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 PartialEq for ActionCreateObjectType
impl PartialEq for ActionCreateObjectType
Source§impl PartialOrd for ActionCreateObjectType
impl PartialOrd for ActionCreateObjectType
Source§impl Serialize for ActionCreateObjectType
impl Serialize for ActionCreateObjectType
Source§impl Visit for ActionCreateObjectType
impl Visit for ActionCreateObjectType
Source§impl VisitMut for ActionCreateObjectType
impl VisitMut for ActionCreateObjectType
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for ActionCreateObjectType
impl StructuralPartialEq for ActionCreateObjectType
Auto Trait Implementations§
impl Freeze for ActionCreateObjectType
impl RefUnwindSafe for ActionCreateObjectType
impl Send for ActionCreateObjectType
impl Sync for ActionCreateObjectType
impl Unpin for ActionCreateObjectType
impl UnwindSafe for ActionCreateObjectType
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