Struct aws_sdk_m2::types::DataSet
source · #[non_exhaustive]pub struct DataSet {
pub storage_type: Option<String>,
pub dataset_name: String,
pub dataset_org: Option<DatasetOrgAttributes>,
pub relative_path: Option<String>,
pub record_length: Option<RecordLength>,
}
Expand description
Defines a data set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.storage_type: Option<String>
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
dataset_name: String
The logical identifier for a specific data set (in mainframe format).
dataset_org: Option<DatasetOrgAttributes>
The type of dataset. The only supported value is VSAM.
relative_path: Option<String>
The relative location of the data set in the database or file system.
record_length: Option<RecordLength>
The length of a record.
Implementations§
source§impl DataSet
impl DataSet
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
The storage type of the data set: database or file system. For Micro Focus, database corresponds to datastore and file system corresponds to EFS/FSX. For Blu Age, there is no support of file system and database corresponds to Blusam.
sourcepub fn dataset_name(&self) -> &str
pub fn dataset_name(&self) -> &str
The logical identifier for a specific data set (in mainframe format).
sourcepub fn dataset_org(&self) -> Option<&DatasetOrgAttributes>
pub fn dataset_org(&self) -> Option<&DatasetOrgAttributes>
The type of dataset. The only supported value is VSAM.
sourcepub fn relative_path(&self) -> Option<&str>
pub fn relative_path(&self) -> Option<&str>
The relative location of the data set in the database or file system.
sourcepub fn record_length(&self) -> Option<&RecordLength>
pub fn record_length(&self) -> Option<&RecordLength>
The length of a record.
Trait Implementations§
source§impl PartialEq for DataSet
impl PartialEq for DataSet
impl StructuralPartialEq for DataSet
Auto Trait Implementations§
impl Freeze for DataSet
impl RefUnwindSafe for DataSet
impl Send for DataSet
impl Sync for DataSet
impl Unpin for DataSet
impl UnwindSafe for DataSet
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more