Struct ciboulette2pg::Ciboulette2PgTable[][src]

pub struct Ciboulette2PgTable { /* fields omitted */ }

A Postgres table

Implementations

impl Ciboulette2PgTable[src]

impl Ciboulette2PgTable[src]

pub fn new(
    id: Ciboulette2PgId,
    schema: Option<Ciboulette2PgSafeIdent>,
    name: Ciboulette2PgSafeIdent,
    ciboulette_type: Arc<CibouletteResourceType>
) -> Self
[src]

Create a new table

pub fn to_cte(
    &self,
    builder: &mut Ciboulette2PgBuilder<'_>,
    prefix: Ciboulette2PgSafeIdent,
    suffix: Ciboulette2PgSafeIdent
) -> Result<Self, Ciboulette2PgError>
[src]

Create a new CTE from the current table

pub fn new_cte(
    id: Ciboulette2PgId,
    name: Ciboulette2PgSafeIdent,
    ciboulette_type: Arc<CibouletteResourceType>
) -> Result<Self, Ciboulette2PgError>
[src]

Create a new CTE

pub fn to_writer(
    &self,
    writer: &mut dyn Write
) -> Result<(), Ciboulette2PgError>
[src]

Trait Implementations

impl Clone for Ciboulette2PgTable[src]

impl Debug for Ciboulette2PgTable[src]

impl Eq for Ciboulette2PgTable[src]

impl Ord for Ciboulette2PgTable[src]

impl PartialEq<Ciboulette2PgTable> for Ciboulette2PgTable[src]

impl PartialOrd<Ciboulette2PgTable> for Ciboulette2PgTable[src]

impl StructuralEq for Ciboulette2PgTable[src]

impl StructuralPartialEq for Ciboulette2PgTable[src]

Auto Trait Implementations

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> Conv for T

impl<T> Conv for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,