pub struct TableConstraintsPrimaryKey {
pub columns: Option<Vec<String>>,
}Expand description
Represents the primary key constraint on a table’s columns.
This type is not used in any activity, and only used as part of another schema.
Fields§
§columns: Option<Vec<String>>Required. The columns that are composed of the primary key constraint.
Trait Implementations§
Source§impl Clone for TableConstraintsPrimaryKey
impl Clone for TableConstraintsPrimaryKey
Source§fn clone(&self) -> TableConstraintsPrimaryKey
fn clone(&self) -> TableConstraintsPrimaryKey
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 TableConstraintsPrimaryKey
impl Debug for TableConstraintsPrimaryKey
Source§impl Default for TableConstraintsPrimaryKey
impl Default for TableConstraintsPrimaryKey
Source§fn default() -> TableConstraintsPrimaryKey
fn default() -> TableConstraintsPrimaryKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableConstraintsPrimaryKey
impl<'de> Deserialize<'de> for TableConstraintsPrimaryKey
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
impl NestedType for TableConstraintsPrimaryKey
impl Part for TableConstraintsPrimaryKey
Auto Trait Implementations§
impl Freeze for TableConstraintsPrimaryKey
impl RefUnwindSafe for TableConstraintsPrimaryKey
impl Send for TableConstraintsPrimaryKey
impl Sync for TableConstraintsPrimaryKey
impl Unpin for TableConstraintsPrimaryKey
impl UnwindSafe for TableConstraintsPrimaryKey
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