pub struct Table {Show 17 fields
pub keyspace_name: String,
pub table_name: String,
pub arn: String,
pub schema_definition: SchemaDefinition,
pub capacity_mode: String,
pub read_capacity_units: Option<i64>,
pub write_capacity_units: Option<i64>,
pub encryption_type: String,
pub kms_key_identifier: Option<String>,
pub point_in_time_recovery_enabled: bool,
pub ttl_status: String,
pub default_time_to_live: Option<i32>,
pub comment: String,
pub client_side_timestamps_enabled: bool,
pub tags: HashMap<String, String>,
pub creation_timestamp: DateTime<Utc>,
pub status: String,
}Expand description
In-memory representation of a table within a keyspace.
Fields§
§keyspace_name: String§table_name: String§arn: String§schema_definition: SchemaDefinition§capacity_mode: String§read_capacity_units: Option<i64>§write_capacity_units: Option<i64>§encryption_type: String§kms_key_identifier: Option<String>§point_in_time_recovery_enabled: bool§ttl_status: String§default_time_to_live: Option<i32>§comment: String§client_side_timestamps_enabled: bool§creation_timestamp: DateTime<Utc>§status: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.