#[non_exhaustive]pub struct UpdateWorldTemplateInput {
pub template: Option<String>,
pub name: Option<String>,
pub template_body: Option<String>,
pub template_location: Option<TemplateLocation>,
}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.template: Option<String>The Amazon Resource Name (arn) of the world template to update.
name: Option<String>The name of the template.
template_body: Option<String>The world template body.
template_location: Option<TemplateLocation>The location of the world template.
Implementations§
source§impl UpdateWorldTemplateInput
impl UpdateWorldTemplateInput
sourcepub fn template(&self) -> Option<&str>
pub fn template(&self) -> Option<&str>
The Amazon Resource Name (arn) of the world template to update.
sourcepub fn template_body(&self) -> Option<&str>
pub fn template_body(&self) -> Option<&str>
The world template body.
sourcepub fn template_location(&self) -> Option<&TemplateLocation>
pub fn template_location(&self) -> Option<&TemplateLocation>
The location of the world template.
source§impl UpdateWorldTemplateInput
impl UpdateWorldTemplateInput
sourcepub fn builder() -> UpdateWorldTemplateInputBuilder
pub fn builder() -> UpdateWorldTemplateInputBuilder
Creates a new builder-style object to manufacture UpdateWorldTemplateInput.
Trait Implementations§
source§impl Clone for UpdateWorldTemplateInput
impl Clone for UpdateWorldTemplateInput
source§fn clone(&self) -> UpdateWorldTemplateInput
fn clone(&self) -> UpdateWorldTemplateInput
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 UpdateWorldTemplateInput
impl Debug for UpdateWorldTemplateInput
source§impl PartialEq for UpdateWorldTemplateInput
impl PartialEq for UpdateWorldTemplateInput
source§fn eq(&self, other: &UpdateWorldTemplateInput) -> bool
fn eq(&self, other: &UpdateWorldTemplateInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateWorldTemplateInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateWorldTemplateInput
impl Send for UpdateWorldTemplateInput
impl Sync for UpdateWorldTemplateInput
impl Unpin for UpdateWorldTemplateInput
impl UnwindSafe for UpdateWorldTemplateInput
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.