Struct aws_sdk_glue::types::PartitionError
source · #[non_exhaustive]pub struct PartitionError {
pub partition_values: Option<Vec<String>>,
pub error_detail: Option<ErrorDetail>,
}
Expand description
Contains information about a partition error.
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.partition_values: Option<Vec<String>>
The values that define the partition.
error_detail: Option<ErrorDetail>
The details about the partition error.
Implementations§
source§impl PartitionError
impl PartitionError
sourcepub fn partition_values(&self) -> Option<&[String]>
pub fn partition_values(&self) -> Option<&[String]>
The values that define the partition.
sourcepub fn error_detail(&self) -> Option<&ErrorDetail>
pub fn error_detail(&self) -> Option<&ErrorDetail>
The details about the partition error.
source§impl PartitionError
impl PartitionError
sourcepub fn builder() -> PartitionErrorBuilder
pub fn builder() -> PartitionErrorBuilder
Creates a new builder-style object to manufacture PartitionError
.
Trait Implementations§
source§impl Clone for PartitionError
impl Clone for PartitionError
source§fn clone(&self) -> PartitionError
fn clone(&self) -> PartitionError
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 PartitionError
impl Debug for PartitionError
source§impl PartialEq for PartitionError
impl PartialEq for PartitionError
source§fn eq(&self, other: &PartitionError) -> bool
fn eq(&self, other: &PartitionError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PartitionError
Auto Trait Implementations§
impl RefUnwindSafe for PartitionError
impl Send for PartitionError
impl Sync for PartitionError
impl Unpin for PartitionError
impl UnwindSafe for PartitionError
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