#[non_exhaustive]pub struct FindChapterStatistics {
pub chapter: Vec<Uuid>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.chapter: Vec<Uuid>Implementations§
Source§impl FindChapterStatistics
impl FindChapterStatistics
Sourcepub async fn send(&self) -> Result<ChapterStatisticsObject>
pub async fn send(&self) -> Result<ChapterStatisticsObject>
Send the request.
Trait Implementations§
Source§impl Clone for FindChapterStatistics
impl Clone for FindChapterStatistics
Source§fn clone(&self) -> FindChapterStatistics
fn clone(&self) -> FindChapterStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FindChapterStatistics
impl Debug for FindChapterStatistics
Source§impl Default for FindChapterStatistics
impl Default for FindChapterStatistics
Source§fn default() -> FindChapterStatistics
fn default() -> FindChapterStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FindChapterStatistics
impl !RefUnwindSafe for FindChapterStatistics
impl Send for FindChapterStatistics
impl Sync for FindChapterStatistics
impl Unpin for FindChapterStatistics
impl !UnwindSafe for FindChapterStatistics
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