pub struct SkillStatisticsDto {
pub total_skills: i64,
pub available_skills: i64,
pub free_skills: i64,
pub paid_skills: i64,
pub professional_skills: i64,
pub skills_by_category: Vec<CategoryCount>,
pub skills_by_expertise: Vec<ExpertiseCount>,
}Expand description
Statistics for building skills
Fields§
§total_skills: i64§available_skills: i64§free_skills: i64§paid_skills: i64§professional_skills: i64§skills_by_category: Vec<CategoryCount>§skills_by_expertise: Vec<ExpertiseCount>Trait Implementations§
Source§impl Debug for SkillStatisticsDto
impl Debug for SkillStatisticsDto
Auto Trait Implementations§
impl Freeze for SkillStatisticsDto
impl RefUnwindSafe for SkillStatisticsDto
impl Send for SkillStatisticsDto
impl Sync for SkillStatisticsDto
impl Unpin for SkillStatisticsDto
impl UnwindSafe for SkillStatisticsDto
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 moreCreates a shared type from an unshared type.