#[non_exhaustive]pub struct DefineExpressionOutput {
pub expression: Option<ExpressionStatus>,
/* private fields */
}Expand description
The result of a DefineExpression request. Contains the status of the newly-configured expression.
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.expression: Option<ExpressionStatus>The value of an Expression and its current status.
Implementations§
source§impl DefineExpressionOutput
impl DefineExpressionOutput
sourcepub fn expression(&self) -> Option<&ExpressionStatus>
pub fn expression(&self) -> Option<&ExpressionStatus>
The value of an Expression and its current status.
source§impl DefineExpressionOutput
impl DefineExpressionOutput
sourcepub fn builder() -> DefineExpressionOutputBuilder
pub fn builder() -> DefineExpressionOutputBuilder
Creates a new builder-style object to manufacture DefineExpressionOutput.
Trait Implementations§
source§impl Clone for DefineExpressionOutput
impl Clone for DefineExpressionOutput
source§fn clone(&self) -> DefineExpressionOutput
fn clone(&self) -> DefineExpressionOutput
Returns a copy 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 DefineExpressionOutput
impl Debug for DefineExpressionOutput
source§impl PartialEq for DefineExpressionOutput
impl PartialEq for DefineExpressionOutput
source§fn eq(&self, other: &DefineExpressionOutput) -> bool
fn eq(&self, other: &DefineExpressionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DefineExpressionOutput
impl RequestId for DefineExpressionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DefineExpressionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DefineExpressionOutput
impl Send for DefineExpressionOutput
impl Sync for DefineExpressionOutput
impl Unpin for DefineExpressionOutput
impl UnwindSafe for DefineExpressionOutput
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
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>
Creates a shared type from an unshared type.