pub struct Publishers { /* private fields */ }Expand description
Retrieves a list of all publishers.
Implementations§
Source§impl Publishers
impl Publishers
Sourcepub fn builder() -> PublishersBuilder
pub fn builder() -> PublishersBuilder
Create a builder for this endpoint.
Trait Implementations§
Source§impl Clone for Publishers
impl Clone for Publishers
Source§fn clone(&self) -> Publishers
fn clone(&self) -> Publishers
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 Publishers
impl Debug for Publishers
Source§impl Default for Publishers
impl Default for Publishers
Source§fn default() -> Publishers
fn default() -> Publishers
Returns the “default value” for a type. Read more
Source§impl Serialize for Publishers
impl Serialize for Publishers
impl Pageable for Publishers
Auto Trait Implementations§
impl Freeze for Publishers
impl RefUnwindSafe for Publishers
impl Send for Publishers
impl Sync for Publishers
impl Unpin for Publishers
impl UnwindSafe for Publishers
Blanket Implementations§
Source§impl<E, T, C> AsyncQuery<T, C> for E
impl<E, T, C> AsyncQuery<T, C> for E
Source§fn query_async<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
E: 'async_trait,
fn query_async<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 C,
) -> Pin<Box<dyn Future<Output = Result<T, ApiError<<C as RestClient>::Error>>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
E: 'async_trait,
Perform an asynchronous query against the client.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<'a, E> PagedEndpointExt<'a, E> for Ewhere
E: Endpoint + Pageable,
impl<'a, E> PagedEndpointExt<'a, E> for Ewhere
E: Endpoint + Pageable,
Source§fn iter<T, C>(&'a self, client: &'a C) -> PagedIter<'a, E, C, T> ⓘwhere
C: Client,
T: DeserializeOwned,
fn iter<T, C>(&'a self, client: &'a C) -> PagedIter<'a, E, C, T> ⓘwhere
C: Client,
T: DeserializeOwned,
Create an Iterator over the results of the paginated endpoint.
Source§fn single_page(&self) -> SinglePageBuilder<'_, E>
fn single_page(&self) -> SinglePageBuilder<'_, E>
Retrieves a single page of results for the paginated endpoint.