#[non_exhaustive]pub struct IndividualPageSelector {
pub pages: Vec<i32>,
/* private fields */
}Expand description
A list of individual page numbers.
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.pages: Vec<i32>Optional. Indices of the pages (starting from 1).
Implementations§
Trait Implementations§
Source§impl Clone for IndividualPageSelector
impl Clone for IndividualPageSelector
Source§fn clone(&self) -> IndividualPageSelector
fn clone(&self) -> IndividualPageSelector
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 IndividualPageSelector
impl Debug for IndividualPageSelector
Source§impl Default for IndividualPageSelector
impl Default for IndividualPageSelector
Source§fn default() -> IndividualPageSelector
fn default() -> IndividualPageSelector
Returns the “default value” for a type. Read more
Source§impl Message for IndividualPageSelector
impl Message for IndividualPageSelector
Source§impl PartialEq for IndividualPageSelector
impl PartialEq for IndividualPageSelector
impl StructuralPartialEq for IndividualPageSelector
Auto Trait Implementations§
impl Freeze for IndividualPageSelector
impl RefUnwindSafe for IndividualPageSelector
impl Send for IndividualPageSelector
impl Sync for IndividualPageSelector
impl Unpin for IndividualPageSelector
impl UnwindSafe for IndividualPageSelector
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