Macro sqlx::query_as_unchecked[][src]

macro_rules! query_as_unchecked {
    ($out_struct:path, $query:expr) => { ... };
    ($out_struct:path, $query:expr, $($args:tt)*) => { ... };
}
This is supported on crate feature macros only.
Expand description

A variant of query_as! which does not check the input or output types. This still does parse the query to ensure it’s syntactically and semantically valid for the current database.