#[non_exhaustive]pub struct DeleteExpressionOutput {
pub expression: Option<ExpressionStatus>,
/* private fields */
}Expand description
The result of a request. Specifies the expression being deleted.DeleteExpression
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 status of the expression being deleted.
Implementations§
source§impl DeleteExpressionOutput
impl DeleteExpressionOutput
sourcepub fn expression(&self) -> Option<&ExpressionStatus>
pub fn expression(&self) -> Option<&ExpressionStatus>
The status of the expression being deleted.
source§impl DeleteExpressionOutput
impl DeleteExpressionOutput
sourcepub fn builder() -> DeleteExpressionOutputBuilder
pub fn builder() -> DeleteExpressionOutputBuilder
Creates a new builder-style object to manufacture DeleteExpressionOutput.
Trait Implementations§
source§impl Clone for DeleteExpressionOutput
impl Clone for DeleteExpressionOutput
source§fn clone(&self) -> DeleteExpressionOutput
fn clone(&self) -> DeleteExpressionOutput
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 DeleteExpressionOutput
impl Debug for DeleteExpressionOutput
source§impl PartialEq for DeleteExpressionOutput
impl PartialEq for DeleteExpressionOutput
source§fn eq(&self, other: &DeleteExpressionOutput) -> bool
fn eq(&self, other: &DeleteExpressionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteExpressionOutput
impl RequestId for DeleteExpressionOutput
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 DeleteExpressionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteExpressionOutput
impl Send for DeleteExpressionOutput
impl Sync for DeleteExpressionOutput
impl Unpin for DeleteExpressionOutput
impl UnwindSafe for DeleteExpressionOutput
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.