Struct aws_sdk_databrew::model::ViewFrame [−][src]
#[non_exhaustive]pub struct ViewFrame {
pub start_column_index: Option<i32>,
pub column_range: Option<i32>,
pub hidden_columns: Option<Vec<String>>,
}
Expand description
Represents the data being transformed during an action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.start_column_index: Option<i32>
The starting index for the range of columns to return in the view frame.
column_range: Option<i32>
The number of columns to include in the view frame, beginning with the
StartColumnIndex
value and ignoring any columns in the
HiddenColumns
list.
A list of columns to hide in the view frame.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ViewFrame
impl UnwindSafe for ViewFrame
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more