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: char) { ... }
    fn quoted(&self, q: char) -> 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: char)

source

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

source

fn to_string(&self) -> String

Trait Implementations§

source§

impl Debug for dyn Iden + 'static

source§

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

Formats the value using the given formatter. Read more

Implementors§