pub struct CountChapterArgs {Show 16 fields
pub title: Option<String>,
pub groups: Vec<Uuid>,
pub uploaders: Vec<Uuid>,
pub volumes: Vec<String>,
pub manga_ids: Vec<Uuid>,
pub chapters: Vec<String>,
pub translated_languages: Vec<Language>,
pub original_languages: Vec<Language>,
pub excluded_original_languages: Vec<Language>,
pub content_rating: Vec<ContentRating>,
pub excluded_groups: Vec<Uuid>,
pub excluded_uploaders: Vec<Uuid>,
pub created_at_since: Option<MangaDexDateTime>,
pub updated_at_since: Option<MangaDexDateTime>,
pub publish_at_since: Option<MangaDexDateTime>,
pub ids: bool,
}Fields§
§title: Option<String>§groups: Vec<Uuid>§uploaders: Vec<Uuid>§volumes: Vec<String>§manga_ids: Vec<Uuid>§chapters: Vec<String>Chapter number in the series or volume.
translated_languages: Vec<Language>§original_languages: Vec<Language>§excluded_original_languages: Vec<Language>§content_rating: Vec<ContentRating>§excluded_groups: Vec<Uuid>Groups to exclude from the results.
excluded_uploaders: Vec<Uuid>Uploaders to exclude from the results.
created_at_since: Option<MangaDexDateTime>§updated_at_since: Option<MangaDexDateTime>DateTime string with following format: YYYY-MM-DDTHH:MM:SS.
publish_at_since: Option<MangaDexDateTime>DateTime string with following format: YYYY-MM-DDTHH:MM:SS.
ids: boolShow chapter ids
Trait Implementations§
Source§impl Args for CountChapterArgs
impl Args for CountChapterArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl AsyncRun for CountChapterArgs
impl AsyncRun for CountChapterArgs
Source§impl Debug for CountChapterArgs
impl Debug for CountChapterArgs
Source§impl FromArgMatches for CountChapterArgs
impl FromArgMatches for CountChapterArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for CountChapterArgs
impl RefUnwindSafe for CountChapterArgs
impl Send for CountChapterArgs
impl Sync for CountChapterArgs
impl Unpin for CountChapterArgs
impl UnwindSafe for CountChapterArgs
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> 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