pub struct DatasetSchema {
pub creation_date_time: Option<f64>,
pub last_updated_date_time: Option<f64>,
pub name: Option<String>,
pub schema: Option<String>,
pub schema_arn: Option<String>,
}
Expand description
Describes the schema for a dataset. For more information on schemas, see CreateSchema.
Fields§
§creation_date_time: Option<f64>
The date and time (in Unix time) that the schema was created.
last_updated_date_time: Option<f64>
The date and time (in Unix time) that the schema was last updated.
name: Option<String>
The name of the schema.
schema: Option<String>
The schema.
schema_arn: Option<String>
The Amazon Resource Name (ARN) of the schema.
Trait Implementations§
Source§impl Clone for DatasetSchema
impl Clone for DatasetSchema
Source§fn clone(&self) -> DatasetSchema
fn clone(&self) -> DatasetSchema
Returns a duplicate 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 DatasetSchema
impl Debug for DatasetSchema
Source§impl Default for DatasetSchema
impl Default for DatasetSchema
Source§fn default() -> DatasetSchema
fn default() -> DatasetSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetSchema
impl<'de> Deserialize<'de> for DatasetSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatasetSchema
impl PartialEq for DatasetSchema
impl StructuralPartialEq for DatasetSchema
Auto Trait Implementations§
impl Freeze for DatasetSchema
impl RefUnwindSafe for DatasetSchema
impl Send for DatasetSchema
impl Sync for DatasetSchema
impl Unpin for DatasetSchema
impl UnwindSafe for DatasetSchema
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