pub struct GatherOptions {
pub progress: bool,
pub first: usize,
pub format: String,
}Expand description
Options for gather operation.
Fields§
§progress: boolShow progress indicator.
first: usizeTake first N results and cancel rest (0 = all).
format: StringOutput format: “json” or “lines”.
Trait Implementations§
Source§impl Clone for GatherOptions
impl Clone for GatherOptions
Source§fn clone(&self) -> GatherOptions
fn clone(&self) -> GatherOptions
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 GatherOptions
impl Debug for GatherOptions
Auto Trait Implementations§
impl Freeze for GatherOptions
impl RefUnwindSafe for GatherOptions
impl Send for GatherOptions
impl Sync for GatherOptions
impl Unpin for GatherOptions
impl UnwindSafe for GatherOptions
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