pub struct GitHubAdapter;Trait Implementations§
Source§impl TrackerAdapter for GitHubAdapter
impl TrackerAdapter for GitHubAdapter
fn name(&self) -> &'static str
fn fetch_issue<'life0, 'life1, 'async_trait>(
&'life0 self,
identifier: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<NormalizedIssue>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn list_active<'life0, 'async_trait>(
&'life0 self,
_limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<NormalizedIssue>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for GitHubAdapter
impl RefUnwindSafe for GitHubAdapter
impl Send for GitHubAdapter
impl Sync for GitHubAdapter
impl Unpin for GitHubAdapter
impl UnsafeUnpin for GitHubAdapter
impl UnwindSafe for GitHubAdapter
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