pub struct ModulesArguments {
pub start: usize,
pub count: Option<NonZeroUsize>,
}
Fields§
§start: usize
The index of the first module to return.
if omitted modules start at 0.
count: Option<NonZeroUsize>
The number of modules to return.
If moduleCount
is not specified or 0, all modules are returned.
Trait Implementations§
Source§impl Clone for ModulesArguments
impl Clone for ModulesArguments
Source§fn clone(&self) -> ModulesArguments
fn clone(&self) -> ModulesArguments
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 ModulesArguments
impl Debug for ModulesArguments
Source§impl<'de> Deserialize<'de> for ModulesArguments
impl<'de> Deserialize<'de> for ModulesArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ModulesArguments
impl Serialize for ModulesArguments
impl Copy for ModulesArguments
Auto Trait Implementations§
impl Freeze for ModulesArguments
impl RefUnwindSafe for ModulesArguments
impl Send for ModulesArguments
impl Sync for ModulesArguments
impl Unpin for ModulesArguments
impl UnwindSafe for ModulesArguments
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