pub struct StubGithubProvider;Trait Implementations§
Source§impl Clone for StubGithubProvider
impl Clone for StubGithubProvider
Source§fn clone(&self) -> StubGithubProvider
fn clone(&self) -> StubGithubProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StubGithubProvider
impl Debug for StubGithubProvider
Source§impl Default for StubGithubProvider
impl Default for StubGithubProvider
Source§fn default() -> StubGithubProvider
fn default() -> StubGithubProvider
Returns the “default value” for a type. Read more
Source§impl GithubProvider for StubGithubProvider
impl GithubProvider for StubGithubProvider
fn name(&self) -> &'static str
fn fetch<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
request: &'life1 GithubRequest,
_ctx: &'life2 CallContext,
) -> Pin<Box<dyn Future<Output = Result<GithubResponse, GithubError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Auto Trait Implementations§
impl Freeze for StubGithubProvider
impl RefUnwindSafe for StubGithubProvider
impl Send for StubGithubProvider
impl Sync for StubGithubProvider
impl Unpin for StubGithubProvider
impl UnsafeUnpin for StubGithubProvider
impl UnwindSafe for StubGithubProvider
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