[][src]Trait sibyl::SqlOutArg

pub trait SqlOutArg {
    fn name(&self) -> Option<&str>;
fn as_to_sql_out(&mut self) -> &mut dyn ToSqlOut; }

A trait for types that can be used as SQL statement OUT arguments

Required methods

fn name(&self) -> Option<&str>

Returns the parameter name or None for positional arguments.

fn as_to_sql_out(&mut self) -> &mut dyn ToSqlOut

Returns ToSqlOut trait implementation for this argument.

Loading content...

Implementations on Foreign Types

impl<T: ToSqlOut, '_> SqlOutArg for (&'_ str, T)[src]

Loading content...

Implementors

impl<T: ToSqlOut> SqlOutArg for T[src]

Loading content...