pub struct PipelineOpts {
pub filter: String,
pub limit: i64,
pub offset: i64,
pub expr: String,
pub fields: String,
}Expand description
Options for the output pipeline.
Fields§
§filter: StringJMESPath predicate applied to each list item.
limit: i64Client-side page size.
offset: i64Client-side page offset.
expr: StringJMESPath expression applied to the whole result.
fields: StringComma-separated field projection.
Trait Implementations§
Source§impl Clone for PipelineOpts
impl Clone for PipelineOpts
Source§fn clone(&self) -> PipelineOpts
fn clone(&self) -> PipelineOpts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PipelineOpts
impl Debug for PipelineOpts
Source§impl Default for PipelineOpts
impl Default for PipelineOpts
Source§fn default() -> PipelineOpts
fn default() -> PipelineOpts
Returns the “default value” for a type. Read more
Source§impl PartialEq for PipelineOpts
impl PartialEq for PipelineOpts
Source§fn eq(&self, other: &PipelineOpts) -> bool
fn eq(&self, other: &PipelineOpts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PipelineOpts
impl StructuralPartialEq for PipelineOpts
Auto Trait Implementations§
impl Freeze for PipelineOpts
impl RefUnwindSafe for PipelineOpts
impl Send for PipelineOpts
impl Sync for PipelineOpts
impl Unpin for PipelineOpts
impl UnsafeUnpin for PipelineOpts
impl UnwindSafe for PipelineOpts
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