pub struct ChapterListDataPullFilterParams {Show 15 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>,
}Expand description
This parameter that allows you to filter a tokio_stream::Stream<Item = ChapterObject> or a Iterator<Item = ChapterObject>
via [crate::prelude::IntoParamedFilteredStream] for an async stream
or [crate::prelude::IntoFiltered] for an non-blocking iterator
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.
Trait Implementations§
Source§impl Clone for ChapterListDataPullFilterParams
impl Clone for ChapterListDataPullFilterParams
Source§fn clone(&self) -> ChapterListDataPullFilterParams
fn clone(&self) -> ChapterListDataPullFilterParams
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 Default for ChapterListDataPullFilterParams
impl Default for ChapterListDataPullFilterParams
Source§fn default() -> ChapterListDataPullFilterParams
fn default() -> ChapterListDataPullFilterParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChapterListDataPullFilterParams
impl<'de> Deserialize<'de> for ChapterListDataPullFilterParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChapterListDataPullFilterParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChapterListDataPullFilterParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ChapterListParams> for ChapterListDataPullFilterParams
impl From<ChapterListParams> for ChapterListDataPullFilterParams
Source§fn from(value: ChapterListParams) -> ChapterListDataPullFilterParams
fn from(value: ChapterListParams) -> ChapterListDataPullFilterParams
Converts to this type from the input type.
Source§impl From<MangaAggregateParam> for ChapterListDataPullFilterParams
impl From<MangaAggregateParam> for ChapterListDataPullFilterParams
Source§fn from(value: MangaAggregateParam) -> ChapterListDataPullFilterParams
fn from(value: MangaAggregateParam) -> ChapterListDataPullFilterParams
Converts to this type from the input type.
Source§impl<I> IntoFiltered<ChapterListDataPullFilterParams> for I
impl<I> IntoFiltered<ChapterListDataPullFilterParams> for I
Source§impl Serialize for ChapterListDataPullFilterParams
impl Serialize for ChapterListDataPullFilterParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ChapterListDataPullFilterParams
impl RefUnwindSafe for ChapterListDataPullFilterParams
impl Send for ChapterListDataPullFilterParams
impl Sync for ChapterListDataPullFilterParams
impl Unpin for ChapterListDataPullFilterParams
impl UnsafeUnpin for ChapterListDataPullFilterParams
impl UnwindSafe for ChapterListDataPullFilterParams
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
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