pub struct RouterQuery { /* private fields */ }Expand description
A query to router list.
Implementations§
Source§impl RouterQuery
impl RouterQuery
Sourcepub fn with_marker<T: Into<String>>(self, marker: T) -> Self
pub fn with_marker<T: Into<String>>(self, marker: T) -> Self
Add marker to the request.
Using this disables automatic pagination.
Sourcepub fn with_limit(self, limit: usize) -> Self
pub fn with_limit(self, limit: usize) -> Self
Add limit to the request.
Using this disables automatic pagination.
Sourcepub fn sort_by(self, sort: Sort<RouterSortKey>) -> Self
pub fn sort_by(self, sort: Sort<RouterSortKey>) -> Self
Add sorting to the request.
Sourcepub fn with_name<T: Into<String>>(self, value: T) -> Self
pub fn with_name<T: Into<String>>(self, value: T) -> Self
Filter by router name (a database regular expression).
Sourcepub fn into_stream(self) -> impl Stream<Item = Result<Router>>
pub fn into_stream(self) -> impl Stream<Item = Result<Router>>
Convert this query into an stream executing the request.
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 RouterQuery
impl Clone for RouterQuery
Source§fn clone(&self) -> RouterQuery
fn clone(&self) -> RouterQuery
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 RouterQuery
impl Debug for RouterQuery
Source§impl ResourceQuery for RouterQuery
impl ResourceQuery for RouterQuery
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 RouterQuery
impl !RefUnwindSafe for RouterQuery
impl Send for RouterQuery
impl Sync for RouterQuery
impl Unpin for RouterQuery
impl !UnwindSafe for RouterQuery
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