Struct aws_sdk_quicksight::model::LogicalTable
source · [−]#[non_exhaustive]pub struct LogicalTable { /* private fields */ }Expand description
A logical table is a unit that joins and that data transformations operate on. A logical table has a source, which can be either a physical table or result of a join. When a logical table points to a physical table, the logical table acts as a mutable copy of that physical table through transform operations.
Implementations
sourceimpl LogicalTable
impl LogicalTable
sourcepub fn data_transforms(&self) -> Option<&[TransformOperation]>
pub fn data_transforms(&self) -> Option<&[TransformOperation]>
Transform operations that act on this logical table.
sourcepub fn source(&self) -> Option<&LogicalTableSource>
pub fn source(&self) -> Option<&LogicalTableSource>
Source of this logical table.
sourceimpl LogicalTable
impl LogicalTable
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LogicalTable.
Trait Implementations
sourceimpl Clone for LogicalTable
impl Clone for LogicalTable
sourcefn clone(&self) -> LogicalTable
fn clone(&self) -> LogicalTable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LogicalTable
impl Debug for LogicalTable
sourceimpl PartialEq<LogicalTable> for LogicalTable
impl PartialEq<LogicalTable> for LogicalTable
sourcefn eq(&self, other: &LogicalTable) -> bool
fn eq(&self, other: &LogicalTable) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for LogicalTable
Auto Trait Implementations
impl RefUnwindSafe for LogicalTable
impl Send for LogicalTable
impl Sync for LogicalTable
impl Unpin for LogicalTable
impl UnwindSafe for LogicalTable
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more