pub struct Org {
pub name: String,
pub url: Url,
pub repo_count: usize,
pub pages_urls: Vec<Url>,
pub all_branches: bool,
pub repositories_data: DashMap<RepoName, Repository, RandomState>,
}
Fields§
§name: String
§url: Url
§repo_count: usize
§pages_urls: Vec<Url>
§all_branches: bool
§repositories_data: DashMap<RepoName, Repository, RandomState>
Trait Implementations§
Source§impl ExtractLog for Org
impl ExtractLog for Org
fn extract_log<'life0, 'async_trait>(
self,
client: &'life0 Client,
) -> Pin<Box<dyn Future<Output = Self> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_all_branches(&self) -> bool
fn get_url(&self) -> Url
fn get_repo_count(&self) -> usize
fn get_pages_url(&self) -> Vec<Url>
fn common_log_feature<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 Client,
selector: Selector,
) -> Pin<Box<dyn Future<Output = DashMap<RepoName, Repository, RandomState>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for Org
impl !RefUnwindSafe for Org
impl Send for Org
impl Sync for Org
impl Unpin for Org
impl UnwindSafe for Org
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
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more