Struct aws_sdk_databrew::model::ViewFrame
source · [−]#[non_exhaustive]pub struct ViewFrame { /* private fields */ }
Expand description
Represents the data being transformed during an action.
Implementations
sourceimpl ViewFrame
impl ViewFrame
sourcepub fn start_column_index(&self) -> Option<i32>
pub fn start_column_index(&self) -> Option<i32>
The starting index for the range of columns to return in the view frame.
sourcepub fn column_range(&self) -> Option<i32>
pub fn column_range(&self) -> 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.
sourcepub fn start_row_index(&self) -> Option<i32>
pub fn start_row_index(&self) -> Option<i32>
The starting index for the range of rows to return in the view frame.
sourcepub fn row_range(&self) -> Option<i32>
pub fn row_range(&self) -> Option<i32>
The number of rows to include in the view frame, beginning with the StartRowIndex
value.
sourcepub fn analytics(&self) -> Option<&AnalyticsMode>
pub fn analytics(&self) -> Option<&AnalyticsMode>
Controls if analytics computation is enabled or disabled. Enabled by default.
Trait Implementations
impl StructuralPartialEq for ViewFrame
Auto Trait Implementations
impl RefUnwindSafe for ViewFrame
impl Send for ViewFrame
impl Sync for ViewFrame
impl Unpin for ViewFrame
impl UnwindSafe for ViewFrame
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more