sea_orm::entity::prelude

Trait 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ยง