#[non_exhaustive]pub struct UpdateVariantStoreInput {
pub name: Option<String>,
pub description: Option<String>,
}
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.name: Option<String>
A name for the store.
description: Option<String>
A description for the store.
Implementations§
source§impl UpdateVariantStoreInput
impl UpdateVariantStoreInput
sourcepub fn builder() -> UpdateVariantStoreInputBuilder
pub fn builder() -> UpdateVariantStoreInputBuilder
Creates a new builder-style object to manufacture UpdateVariantStoreInput
.
Trait Implementations§
source§impl Clone for UpdateVariantStoreInput
impl Clone for UpdateVariantStoreInput
source§fn clone(&self) -> UpdateVariantStoreInput
fn clone(&self) -> UpdateVariantStoreInput
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 UpdateVariantStoreInput
impl Debug for UpdateVariantStoreInput
source§impl PartialEq<UpdateVariantStoreInput> for UpdateVariantStoreInput
impl PartialEq<UpdateVariantStoreInput> for UpdateVariantStoreInput
source§fn eq(&self, other: &UpdateVariantStoreInput) -> bool
fn eq(&self, other: &UpdateVariantStoreInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateVariantStoreInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateVariantStoreInput
impl Send for UpdateVariantStoreInput
impl Sync for UpdateVariantStoreInput
impl Unpin for UpdateVariantStoreInput
impl UnwindSafe for UpdateVariantStoreInput
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