pub struct IterativeConfig {
pub max_num_calls: Option<Option<i32>>,
pub chunk_size: Option<Option<NotNan<f64>>>,
}
Fields§
§max_num_calls: Option<Option<i32>>
§chunk_size: Option<Option<NotNan<f64>>>
Trait Implementations§
Source§impl Clone for IterativeConfig
impl Clone for IterativeConfig
Source§fn clone(&self) -> IterativeConfig
fn clone(&self) -> IterativeConfig
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 IterativeConfig
impl Debug for IterativeConfig
Source§impl Default for IterativeConfig
impl Default for IterativeConfig
Source§fn default() -> IterativeConfig
fn default() -> IterativeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IterativeConfig
impl<'de> Deserialize<'de> for IterativeConfig
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 PartialEq for IterativeConfig
impl PartialEq for IterativeConfig
Source§impl Serialize for IterativeConfig
impl Serialize for IterativeConfig
impl Eq for IterativeConfig
impl StructuralPartialEq for IterativeConfig
Auto Trait Implementations§
impl Freeze for IterativeConfig
impl RefUnwindSafe for IterativeConfig
impl Send for IterativeConfig
impl Sync for IterativeConfig
impl Unpin for IterativeConfig
impl UnwindSafe for IterativeConfig
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.