[][src]Struct format_sql_query::Schema

pub struct Schema<'i>(pub Object<'i>);

Represents database schema name.

Methods

impl<'i> Schema<'i>[src]

pub fn new(name: impl Into<Object<'i>>) -> Schema<'i>[src]

Trait Implementations

impl<'i> Clone for Schema<'i>[src]

impl<'i> Copy for Schema<'i>[src]

impl<'i> Debug for Schema<'i>[src]

impl<'_> Display for Schema<'_>[src]

impl<'i, O> From<O> for Schema<'i> where
    O: Into<Object<'i>>, 
[src]

impl<'i> PartialEq<Schema<'i>> for Schema<'i>[src]

impl<'i> StructuralPartialEq for Schema<'i>[src]

Auto Trait Implementations

impl<'i> RefUnwindSafe for Schema<'i>

impl<'i> Send for Schema<'i>

impl<'i> Sync for Schema<'i>

impl<'i> Unpin for Schema<'i>

impl<'i> UnwindSafe for Schema<'i>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.