#[non_exhaustive]pub struct MagneticStoreWriteProperties {
pub enable_magnetic_store_writes: Option<bool>,
pub magnetic_store_rejected_data_location: Option<MagneticStoreRejectedDataLocation>,
}
Expand description
The set of properties on a table for configuring magnetic store writes.
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.enable_magnetic_store_writes: Option<bool>
A flag to enable magnetic store writes.
magnetic_store_rejected_data_location: Option<MagneticStoreRejectedDataLocation>
The location to write error reports for records rejected asynchronously during magnetic store writes.
Implementations§
source§impl MagneticStoreWriteProperties
impl MagneticStoreWriteProperties
sourcepub fn enable_magnetic_store_writes(&self) -> Option<bool>
pub fn enable_magnetic_store_writes(&self) -> Option<bool>
A flag to enable magnetic store writes.
sourcepub fn magnetic_store_rejected_data_location(
&self
) -> Option<&MagneticStoreRejectedDataLocation>
pub fn magnetic_store_rejected_data_location( &self ) -> Option<&MagneticStoreRejectedDataLocation>
The location to write error reports for records rejected asynchronously during magnetic store writes.
source§impl MagneticStoreWriteProperties
impl MagneticStoreWriteProperties
sourcepub fn builder() -> MagneticStoreWritePropertiesBuilder
pub fn builder() -> MagneticStoreWritePropertiesBuilder
Creates a new builder-style object to manufacture MagneticStoreWriteProperties
.
Trait Implementations§
source§impl Clone for MagneticStoreWriteProperties
impl Clone for MagneticStoreWriteProperties
source§fn clone(&self) -> MagneticStoreWriteProperties
fn clone(&self) -> MagneticStoreWriteProperties
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 MagneticStoreWriteProperties
impl Debug for MagneticStoreWriteProperties
source§impl PartialEq<MagneticStoreWriteProperties> for MagneticStoreWriteProperties
impl PartialEq<MagneticStoreWriteProperties> for MagneticStoreWriteProperties
source§fn eq(&self, other: &MagneticStoreWriteProperties) -> bool
fn eq(&self, other: &MagneticStoreWriteProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MagneticStoreWriteProperties
Auto Trait Implementations§
impl RefUnwindSafe for MagneticStoreWriteProperties
impl Send for MagneticStoreWriteProperties
impl Sync for MagneticStoreWriteProperties
impl Unpin for MagneticStoreWriteProperties
impl UnwindSafe for MagneticStoreWriteProperties
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