pub trait AsQuery {
    // Required method
    fn as_query(&self) -> Result<Option<String>>;
}
Expand description

A helper to express the deserialization of a query string to some consistent result type

Required Methods§

source

fn as_query(&self) -> Result<Option<String>>

Get the value of this trait implementor as a Result<Option>

Implementations on Foreign Types§

source§

impl AsQuery for ()

Implementors§