Trait sea_orm::Iden

source ·
pub trait Iden: Send + Sync {
    // Required method
    fn unquoted(&self, s: &mut dyn Write);

    // Provided methods
    fn prepare(&self, s: &mut dyn Write, q: Quote) { ... }
    fn quoted(&self, q: Quote) -> String { ... }
    fn to_string(&self) -> String { ... }
}
Expand description

Identifier

Required Methods§

source

fn unquoted(&self, s: &mut dyn Write)

Provided Methods§

source

fn prepare(&self, s: &mut dyn Write, q: Quote)

source

fn quoted(&self, q: Quote) -> String

source

fn to_string(&self) -> String

Trait Implementations§

source§

impl Debug for dyn Iden

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Implementors§