Struct aws_sdk_databrew::types::ViewFrame
source · #[non_exhaustive]pub struct ViewFrame {
pub start_column_index: i32,
pub column_range: Option<i32>,
pub hidden_columns: Option<Vec<String>>,
pub start_row_index: Option<i32>,
pub row_range: Option<i32>,
pub analytics: Option<AnalyticsMode>,
}
Expand description
Represents the data being transformed during an action.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.start_column_index: 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.
start_row_index: Option<i32>
The starting index for the range of rows to return in the view frame.
row_range: Option<i32>
The number of rows to include in the view frame, beginning with the StartRowIndex
value.
analytics: Option<AnalyticsMode>
Controls if analytics computation is enabled or disabled. Enabled by default.
Implementations§
source§impl ViewFrame
impl ViewFrame
sourcepub fn start_column_index(&self) -> i32
pub fn start_column_index(&self) -> 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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .hidden_columns.is_none()
.
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 Freeze for ViewFrame
impl RefUnwindSafe for ViewFrame
impl Send for ViewFrame
impl Sync for ViewFrame
impl Unpin for ViewFrame
impl UnwindSafe for ViewFrame
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more