#[non_exhaustive]pub struct UpdateStreamingImageOutput {
pub streaming_image: Option<StreamingImage>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.streaming_image: Option<StreamingImage>Represents a streaming image resource.
Streaming images are used by studio users to select which operating system and software they want to use in a Nimble Studio streaming session.
Amazon provides a number of streaming images that include popular 3rd-party software.
You can create your own streaming images using an Amazon EC2 machine image that you create for this purpose. You can also include software that your users require.
Implementations§
source§impl UpdateStreamingImageOutput
impl UpdateStreamingImageOutput
sourcepub fn streaming_image(&self) -> Option<&StreamingImage>
pub fn streaming_image(&self) -> Option<&StreamingImage>
Represents a streaming image resource.
Streaming images are used by studio users to select which operating system and software they want to use in a Nimble Studio streaming session.
Amazon provides a number of streaming images that include popular 3rd-party software.
You can create your own streaming images using an Amazon EC2 machine image that you create for this purpose. You can also include software that your users require.
source§impl UpdateStreamingImageOutput
impl UpdateStreamingImageOutput
sourcepub fn builder() -> UpdateStreamingImageOutputBuilder
pub fn builder() -> UpdateStreamingImageOutputBuilder
Creates a new builder-style object to manufacture UpdateStreamingImageOutput.
Trait Implementations§
source§impl Clone for UpdateStreamingImageOutput
impl Clone for UpdateStreamingImageOutput
source§fn clone(&self) -> UpdateStreamingImageOutput
fn clone(&self) -> UpdateStreamingImageOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateStreamingImageOutput
impl Debug for UpdateStreamingImageOutput
source§impl PartialEq for UpdateStreamingImageOutput
impl PartialEq for UpdateStreamingImageOutput
source§fn eq(&self, other: &UpdateStreamingImageOutput) -> bool
fn eq(&self, other: &UpdateStreamingImageOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateStreamingImageOutput
impl RequestId for UpdateStreamingImageOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for UpdateStreamingImageOutput
Auto Trait Implementations§
impl Freeze for UpdateStreamingImageOutput
impl RefUnwindSafe for UpdateStreamingImageOutput
impl Send for UpdateStreamingImageOutput
impl Sync for UpdateStreamingImageOutput
impl Unpin for UpdateStreamingImageOutput
impl UnwindSafe for UpdateStreamingImageOutput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more