pub struct DetailedFlavorQuery { /* private fields */ }Expand description
A detailed query to flavor list.
Implementations§
Source§impl DetailedFlavorQuery
impl DetailedFlavorQuery
Sourcepub fn into_stream(self) -> impl Stream<Item = Result<Flavor>>
pub fn into_stream(self) -> impl Stream<Item = Result<Flavor>>
Convert this query into a stream executing the request.
This stream yields full Flavor objects.
Returns a TryStream, which is a stream with each next
call returning a Result.
Note that no requests are done until you start iterating.
Trait Implementations§
Source§impl Clone for DetailedFlavorQuery
impl Clone for DetailedFlavorQuery
Source§fn clone(&self) -> DetailedFlavorQuery
fn clone(&self) -> DetailedFlavorQuery
Returns a duplicate 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 moreSource§impl Debug for DetailedFlavorQuery
impl Debug for DetailedFlavorQuery
Source§impl ResourceQuery for DetailedFlavorQuery
impl ResourceQuery for DetailedFlavorQuery
Source§const DEFAULT_LIMIT: usize = 50usize
const DEFAULT_LIMIT: usize = 50usize
Default limit to use with this query.
Source§fn can_paginate<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn can_paginate<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Whether pagination is supported for this query.
Source§fn extract_marker(&self, resource: &Self::Item) -> String
fn extract_marker(&self, resource: &Self::Item) -> String
Extract a marker from a resource.
Auto Trait Implementations§
impl Freeze for DetailedFlavorQuery
impl !RefUnwindSafe for DetailedFlavorQuery
impl Send for DetailedFlavorQuery
impl Sync for DetailedFlavorQuery
impl Unpin for DetailedFlavorQuery
impl !UnwindSafe for DetailedFlavorQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more