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