Enum good_ormning::sqlite::QueryResCount
source · pub enum QueryResCount {
None,
MaybeOne,
One,
Many,
}Expand description
The number of results this query returns. This determines if the return type is
void, Option, the value directly, or a Vec. It must be a valid value per
the query body (e.g. select can’t have None res count).
Variants§
Trait Implementations§
source§impl Clone for QueryResCount
impl Clone for QueryResCount
source§fn clone(&self) -> QueryResCount
fn clone(&self) -> QueryResCount
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more