pub struct TimeToLiveDescription {
pub attribute_name: Option<String>,
pub time_to_live_status: Option<String>,
}
Expand description
The description of the Time to Live (TTL) status on the specified table.
Fields§
§attribute_name: Option<String>
The name of the TTL attribute for items in the table.
time_to_live_status: Option<String>
The TTL status for the table.
Trait Implementations§
Source§impl Clone for TimeToLiveDescription
impl Clone for TimeToLiveDescription
Source§fn clone(&self) -> TimeToLiveDescription
fn clone(&self) -> TimeToLiveDescription
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 TimeToLiveDescription
impl Debug for TimeToLiveDescription
Source§impl Default for TimeToLiveDescription
impl Default for TimeToLiveDescription
Source§fn default() -> TimeToLiveDescription
fn default() -> TimeToLiveDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeToLiveDescription
impl<'de> Deserialize<'de> for TimeToLiveDescription
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 TimeToLiveDescription
impl PartialEq for TimeToLiveDescription
impl StructuralPartialEq for TimeToLiveDescription
Auto Trait Implementations§
impl Freeze for TimeToLiveDescription
impl RefUnwindSafe for TimeToLiveDescription
impl Send for TimeToLiveDescription
impl Sync for TimeToLiveDescription
impl Unpin for TimeToLiveDescription
impl UnwindSafe for TimeToLiveDescription
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