pub struct SelectParameters {
pub expression: String,
pub expression_type: String,
pub input_serialization: InputSerialization,
pub output_serialization: OutputSerialization,
}Expand description
Describes the parameters for Select job types.
Fields§
§expression: StringThe expression that is used to query the object.
expression_type: StringThe type of the provided expression (for example, SQL).
input_serialization: InputSerializationDescribes the serialization format of the object.
output_serialization: OutputSerializationDescribes how the results of the Select job are serialized.
Trait Implementations§
Source§impl Clone for SelectParameters
impl Clone for SelectParameters
Source§fn clone(&self) -> SelectParameters
fn clone(&self) -> SelectParameters
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 SelectParameters
impl Debug for SelectParameters
Source§impl Default for SelectParameters
impl Default for SelectParameters
Source§fn default() -> SelectParameters
fn default() -> SelectParameters
Returns the “default value” for a type. Read more
Source§impl PartialEq for SelectParameters
impl PartialEq for SelectParameters
impl StructuralPartialEq for SelectParameters
Auto Trait Implementations§
impl Freeze for SelectParameters
impl RefUnwindSafe for SelectParameters
impl Send for SelectParameters
impl Sync for SelectParameters
impl Unpin for SelectParameters
impl UnwindSafe for SelectParameters
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