Struct aws_sdk_m2::types::VsamDetailAttributes
source · #[non_exhaustive]pub struct VsamDetailAttributes { /* private fields */ }Expand description
The attributes of a VSAM type data set.
Implementations§
source§impl VsamDetailAttributes
impl VsamDetailAttributes
sourcepub fn encoding(&self) -> Option<&str>
pub fn encoding(&self) -> Option<&str>
The character set used by the data set. Can be ASCII, EBCDIC, or unknown.
sourcepub fn record_format(&self) -> Option<&str>
pub fn record_format(&self) -> Option<&str>
The record format of the data set.
sourcepub fn compressed(&self) -> Option<bool>
pub fn compressed(&self) -> Option<bool>
Indicates whether indexes for this dataset are stored as compressed values. If you have a large data set (typically > 100 Mb), consider setting this flag to True.
sourcepub fn cache_at_startup(&self) -> Option<bool>
pub fn cache_at_startup(&self) -> Option<bool>
If set to True, enforces loading the data set into cache before it’s used by the application.
sourcepub fn primary_key(&self) -> Option<&PrimaryKey>
pub fn primary_key(&self) -> Option<&PrimaryKey>
The primary key of the data set.
sourcepub fn alternate_keys(&self) -> Option<&[AlternateKey]>
pub fn alternate_keys(&self) -> Option<&[AlternateKey]>
The alternate key definitions, if any. A legacy dataset might not have any alternate key defined, but if those alternate keys definitions exist, provide them as some applications will make use of them.
source§impl VsamDetailAttributes
impl VsamDetailAttributes
sourcepub fn builder() -> VsamDetailAttributesBuilder
pub fn builder() -> VsamDetailAttributesBuilder
Creates a new builder-style object to manufacture VsamDetailAttributes.
Trait Implementations§
source§impl Clone for VsamDetailAttributes
impl Clone for VsamDetailAttributes
source§fn clone(&self) -> VsamDetailAttributes
fn clone(&self) -> VsamDetailAttributes
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 VsamDetailAttributes
impl Debug for VsamDetailAttributes
source§impl PartialEq<VsamDetailAttributes> for VsamDetailAttributes
impl PartialEq<VsamDetailAttributes> for VsamDetailAttributes
source§fn eq(&self, other: &VsamDetailAttributes) -> bool
fn eq(&self, other: &VsamDetailAttributes) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VsamDetailAttributes
Auto Trait Implementations§
impl RefUnwindSafe for VsamDetailAttributes
impl Send for VsamDetailAttributes
impl Sync for VsamDetailAttributes
impl Unpin for VsamDetailAttributes
impl UnwindSafe for VsamDetailAttributes
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