pub struct GlobalTable {
pub global_table_name: Option<String>,
pub replication_group: Option<Vec<Replica>>,
}
Expand description
Represents the properties of a global table.
Fields§
§global_table_name: Option<String>
The global table name.
replication_group: Option<Vec<Replica>>
The Regions where the global table has replicas.
Trait Implementations§
Source§impl Clone for GlobalTable
impl Clone for GlobalTable
Source§fn clone(&self) -> GlobalTable
fn clone(&self) -> GlobalTable
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 GlobalTable
impl Debug for GlobalTable
Source§impl Default for GlobalTable
impl Default for GlobalTable
Source§fn default() -> GlobalTable
fn default() -> GlobalTable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalTable
impl<'de> Deserialize<'de> for GlobalTable
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 GlobalTable
impl PartialEq for GlobalTable
impl StructuralPartialEq for GlobalTable
Auto Trait Implementations§
impl Freeze for GlobalTable
impl RefUnwindSafe for GlobalTable
impl Send for GlobalTable
impl Sync for GlobalTable
impl Unpin for GlobalTable
impl UnwindSafe for GlobalTable
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