#[non_exhaustive]pub struct StartStreamProcessorOutput {
pub session_id: 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.session_id: Option<String>
A unique identifier for the stream processing session.
Implementations§
source§impl StartStreamProcessorOutput
impl StartStreamProcessorOutput
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
A unique identifier for the stream processing session.
source§impl StartStreamProcessorOutput
impl StartStreamProcessorOutput
sourcepub fn builder() -> StartStreamProcessorOutputBuilder
pub fn builder() -> StartStreamProcessorOutputBuilder
Creates a new builder-style object to manufacture StartStreamProcessorOutput
.
Trait Implementations§
source§impl Clone for StartStreamProcessorOutput
impl Clone for StartStreamProcessorOutput
source§fn clone(&self) -> StartStreamProcessorOutput
fn clone(&self) -> StartStreamProcessorOutput
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 StartStreamProcessorOutput
impl Debug for StartStreamProcessorOutput
source§impl PartialEq<StartStreamProcessorOutput> for StartStreamProcessorOutput
impl PartialEq<StartStreamProcessorOutput> for StartStreamProcessorOutput
source§fn eq(&self, other: &StartStreamProcessorOutput) -> bool
fn eq(&self, other: &StartStreamProcessorOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for StartStreamProcessorOutput
impl RequestId for StartStreamProcessorOutput
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 StartStreamProcessorOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartStreamProcessorOutput
impl Send for StartStreamProcessorOutput
impl Sync for StartStreamProcessorOutput
impl Unpin for StartStreamProcessorOutput
impl UnwindSafe for StartStreamProcessorOutput
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