Struct aws_sdk_glue::types::GlueSchema
source · #[non_exhaustive]pub struct GlueSchema {
pub columns: Option<Vec<GlueStudioSchemaColumn>>,
}Expand description
Specifies a user-defined schema when a schema cannot be determined by Glue.
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.columns: Option<Vec<GlueStudioSchemaColumn>>Specifies the column definitions that make up a Glue schema.
Implementations§
source§impl GlueSchema
impl GlueSchema
sourcepub fn columns(&self) -> Option<&[GlueStudioSchemaColumn]>
pub fn columns(&self) -> Option<&[GlueStudioSchemaColumn]>
Specifies the column definitions that make up a Glue schema.
source§impl GlueSchema
impl GlueSchema
sourcepub fn builder() -> GlueSchemaBuilder
pub fn builder() -> GlueSchemaBuilder
Creates a new builder-style object to manufacture GlueSchema.
Trait Implementations§
source§impl Clone for GlueSchema
impl Clone for GlueSchema
source§fn clone(&self) -> GlueSchema
fn clone(&self) -> GlueSchema
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 GlueSchema
impl Debug for GlueSchema
source§impl PartialEq<GlueSchema> for GlueSchema
impl PartialEq<GlueSchema> for GlueSchema
source§fn eq(&self, other: &GlueSchema) -> bool
fn eq(&self, other: &GlueSchema) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GlueSchema
Auto Trait Implementations§
impl RefUnwindSafe for GlueSchema
impl Send for GlueSchema
impl Sync for GlueSchema
impl Unpin for GlueSchema
impl UnwindSafe for GlueSchema
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