pub struct GlobalSecondaryIndex {
pub index_name: String,
pub key_schema: Vec<KeySchemaElement>,
pub projection: Projection,
pub provisioned_throughput: Option<ProvisionedThroughput>,
}Expand description
Global Secondary Index definition.
Fields§
§index_name: String§key_schema: Vec<KeySchemaElement>§projection: Projection§provisioned_throughput: Option<ProvisionedThroughput>Trait Implementations§
Source§impl Clone for GlobalSecondaryIndex
impl Clone for GlobalSecondaryIndex
Source§fn clone(&self) -> GlobalSecondaryIndex
fn clone(&self) -> GlobalSecondaryIndex
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GlobalSecondaryIndex
impl Debug for GlobalSecondaryIndex
Source§impl Default for GlobalSecondaryIndex
impl Default for GlobalSecondaryIndex
Source§fn default() -> GlobalSecondaryIndex
fn default() -> GlobalSecondaryIndex
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalSecondaryIndex
impl<'de> Deserialize<'de> for GlobalSecondaryIndex
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 GlobalSecondaryIndex
impl PartialEq for GlobalSecondaryIndex
Source§fn eq(&self, other: &GlobalSecondaryIndex) -> bool
fn eq(&self, other: &GlobalSecondaryIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GlobalSecondaryIndex
impl Serialize for GlobalSecondaryIndex
impl StructuralPartialEq for GlobalSecondaryIndex
Auto Trait Implementations§
impl Freeze for GlobalSecondaryIndex
impl RefUnwindSafe for GlobalSecondaryIndex
impl Send for GlobalSecondaryIndex
impl Sync for GlobalSecondaryIndex
impl Unpin for GlobalSecondaryIndex
impl UnsafeUnpin for GlobalSecondaryIndex
impl UnwindSafe for GlobalSecondaryIndex
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