[][src]Trait latitude::SystemStatement

pub trait SystemStatement {
#[must_use]    pub fn execute<'life0, 'async_trait>(
        self,
        uri: &'life0 str
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]pub fn execute<'life0, 'async_trait>(
    self,
    uri: &'life0 str
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Loading content...

Implementors

impl SystemStatement for CreateDatabase[src]

pub fn execute<'life0, 'async_trait>(
    self,
    uri: &'life0 str
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Execute the DDL statement

impl SystemStatement for DropDatabase[src]

pub fn execute<'life0, 'async_trait>(
    self,
    uri: &'life0 str
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Execute the DDL statement

Loading content...