pub struct Project<'a> { /* private fields */ }
Expand description
Query for a specific project on an instance.
Implementations§
Trait Implementations§
source§impl<'a> Endpoint for Project<'a>
impl<'a> Endpoint for Project<'a>
source§fn parameters(&self) -> QueryParams<'_>
fn parameters(&self) -> QueryParams<'_>
Query parameters for the endpoint.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Project<'a>
impl<'a> Send for Project<'a>
impl<'a> Sync for Project<'a>
impl<'a> Unpin for Project<'a>
impl<'a> UnwindSafe for Project<'a>
Blanket Implementations§
source§impl<E, T, C> AsyncQuery<T, C> for Ewhere
E: Endpoint + Sync,
T: DeserializeOwned + 'static,
C: AsyncClient + Sync,
impl<E, T, C> AsyncQuery<T, C> for Ewhere E: Endpoint + Sync, T: DeserializeOwned + 'static, C: AsyncClient + Sync,
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, Global>>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, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, E: 'async_trait,
Perform the query asynchronously 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