pub struct TableView {Show 17 fields
pub keyspace_name: String,
pub table_name: String,
pub arn: String,
pub schema_definition: SchemaDefinitionView,
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: Option<String>,
pub status: String,
}Fields§
§keyspace_name: String§table_name: String§arn: String§schema_definition: SchemaDefinitionView§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: Option<String>§status: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for TableView
impl<'de> Deserialize<'de> for TableView
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
Auto Trait Implementations§
impl Freeze for TableView
impl RefUnwindSafe for TableView
impl Send for TableView
impl Sync for TableView
impl Unpin for TableView
impl UnsafeUnpin for TableView
impl UnwindSafe for TableView
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.