pub struct Developers { /* private fields */ }
Expand description
Retrieves a list of developers
Implementations§
Source§impl Developers
impl Developers
Sourcepub fn builder() -> DevelopersBuilder
pub fn builder() -> DevelopersBuilder
Create a builder for this endpoint.
Trait Implementations§
Source§impl Clone for Developers
impl Clone for Developers
Source§fn clone(&self) -> Developers
fn clone(&self) -> Developers
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Developers
impl Debug for Developers
Source§impl Default for Developers
impl Default for Developers
Source§fn default() -> Developers
fn default() -> Developers
Returns the “default value” for a type. Read more
Source§impl Serialize for Developers
impl Serialize for Developers
impl Pageable for Developers
Auto Trait Implementations§
impl Freeze for Developers
impl RefUnwindSafe for Developers
impl Send for Developers
impl Sync for Developers
impl Unpin for Developers
impl UnwindSafe for Developers
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.