pub struct MediathekQueryBuilder<'client> { /* private fields */ }
Expand description

Request builder for the /api/query endpoint.

Implementations§

source§

impl MediathekQueryBuilder<'_>

source

pub fn query( self, fields: impl Into<Vec<QueryField>>, query: impl Into<String> ) -> Self

Add an additional search query.

Multiple queries are combined using a logical AND.

fields describes the fields in which should be searched for query.

source

pub fn duration_min(self, duration_min: impl Into<Duration>) -> Self

Filter for a minimum duration.

source

pub fn duration_max(self, duration_max: impl Into<Duration>) -> Self

Filter for a maximum duration.

source

pub fn include_future(self, include_future: bool) -> Self

Include media with a broadcasting date in the future.

source

pub fn sort_by(self, sort_by: SortField) -> Self

Sort the results by a specific field.

source

pub fn sort_order(self, sort_order: SortOrder) -> Self

Set the sort order.

source

pub fn size(self, size: usize) -> Self

Set the count of results to retrieve.

Can be used for pagination.

source

pub fn offset(self, offset: usize) -> Self

Skip the specified count of items.

Can be used for pagination.

source§

impl MediathekQueryBuilder<'_>

source

pub async fn send(self) -> Result<QueryResult>

Build and send the request to the server.

This call can be usually omitted since this type implements IntoFuture.

Trait Implementations§

source§

impl<'client> Debug for MediathekQueryBuilder<'client>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'client> IntoFuture for MediathekQueryBuilder<'client>

§

type Output = Result<QueryResult, Error>

The output that the future will produce on completion.
§

type IntoFuture = Pin<Box<dyn Future<Output = <MediathekQueryBuilder<'client> as IntoFuture>::Output> + Send + 'client>>

Which kind of future are we turning this into?
source§

fn into_future(self) -> Self::IntoFuture

Creates a future from a value. Read more
source§

impl<'client> Serialize for MediathekQueryBuilder<'client>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<'client> Freeze for MediathekQueryBuilder<'client>

§

impl<'client> !RefUnwindSafe for MediathekQueryBuilder<'client>

§

impl<'client> Send for MediathekQueryBuilder<'client>

§

impl<'client> Sync for MediathekQueryBuilder<'client>

§

impl<'client> Unpin for MediathekQueryBuilder<'client>

§

impl<'client> !UnwindSafe for MediathekQueryBuilder<'client>

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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>,

§

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> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more