#[non_exhaustive]pub struct CancelQueryOutput {
pub cancellation_message: Option<String>,
/* private fields */
}
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.cancellation_message: Option<String>
A CancellationMessage
is returned when a CancelQuery
request for the query specified by QueryId
has already been issued.
Implementations§
source§impl CancelQueryOutput
impl CancelQueryOutput
sourcepub fn cancellation_message(&self) -> Option<&str>
pub fn cancellation_message(&self) -> Option<&str>
A CancellationMessage
is returned when a CancelQuery
request for the query specified by QueryId
has already been issued.
source§impl CancelQueryOutput
impl CancelQueryOutput
sourcepub fn builder() -> CancelQueryOutputBuilder
pub fn builder() -> CancelQueryOutputBuilder
Creates a new builder-style object to manufacture CancelQueryOutput
.
Trait Implementations§
source§impl Clone for CancelQueryOutput
impl Clone for CancelQueryOutput
source§fn clone(&self) -> CancelQueryOutput
fn clone(&self) -> CancelQueryOutput
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 CancelQueryOutput
impl Debug for CancelQueryOutput
source§impl PartialEq<CancelQueryOutput> for CancelQueryOutput
impl PartialEq<CancelQueryOutput> for CancelQueryOutput
source§fn eq(&self, other: &CancelQueryOutput) -> bool
fn eq(&self, other: &CancelQueryOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CancelQueryOutput
impl RequestId for CancelQueryOutput
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 CancelQueryOutput
Auto Trait Implementations§
impl RefUnwindSafe for CancelQueryOutput
impl Send for CancelQueryOutput
impl Sync for CancelQueryOutput
impl Unpin for CancelQueryOutput
impl UnwindSafe for CancelQueryOutput
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