pub fn query_optional_with_params<Input: Serialize, Output: DeserializeOwned>(
    query: &str,
    connection: &Connection,
    params: &Input
) -> Result<Option<Output>, Error>
Expand description

Execute the given query and return the result, which can be at most one row.