pub struct SelectOptions {
pub expression: String,
pub input_format: SelectInputFormat,
pub output_format: SelectOutputFormat,
pub compression: SelectCompression,
}Expand description
Options for running an S3 Select query on one object.
Fields§
§expression: StringSQL expression (S3 Select / s3object).
input_format: SelectInputFormat§output_format: SelectOutputFormat§compression: SelectCompressionTrait Implementations§
Source§impl Clone for SelectOptions
impl Clone for SelectOptions
Source§fn clone(&self) -> SelectOptions
fn clone(&self) -> SelectOptions
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 SelectOptions
impl Debug for SelectOptions
Source§impl Default for SelectOptions
impl Default for SelectOptions
Source§impl PartialEq for SelectOptions
impl PartialEq for SelectOptions
impl Eq for SelectOptions
impl StructuralPartialEq for SelectOptions
Auto Trait Implementations§
impl Freeze for SelectOptions
impl RefUnwindSafe for SelectOptions
impl Send for SelectOptions
impl Sync for SelectOptions
impl Unpin for SelectOptions
impl UnsafeUnpin for SelectOptions
impl UnwindSafe for SelectOptions
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