ReverseFilter

Struct ReverseFilter 

Source
pub struct ReverseFilter {
    pub radius: Option<u64>,
    pub limit: Option<u64>,
    pub lang: Option<String>,
    pub layer: Option<Vec<PhotonLayer>>,
    pub additional_query: Option<Vec<(String, String)>>,
}
Expand description

Filtering options for reverse searches. This struct implements a builder pattern, so filters can be easily constructed.

Fields§

§radius: Option<u64>§limit: Option<u64>§lang: Option<String>§layer: Option<Vec<PhotonLayer>>§additional_query: Option<Vec<(String, String)>>

Implementations§

Source§

impl ReverseFilter

Source

pub fn new() -> Self

Construct a new ReverseFilter. All fields are set to None in the beginning.

Source

pub fn radius(self, radius: u64) -> Self

Source

pub fn limit(self, limit: u64) -> Self

Limit the number of search results.

Source

pub fn language(self, lang: &str) -> Self

Return results in a specific language. Photon currently supports DE, EN and FR. Defaults to the local language of a search result.

Source

pub fn layer(self, layer: Vec<PhotonLayer>) -> Self

Filter results by layer. See Photon documentation

Source

pub fn additional_query(self, query: Vec<(&str, &str)>) -> Self

Add additional query strings to the request. Example: Filtering by tags and values

Trait Implementations§

Source§

impl Default for ReverseFilter

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,