pub struct DatabaseUniqueIdProperty {
pub id: Option<String>,
pub name: String,
pub description: Option<String>,
pub unique_id: DatabaseUniqueIdPropertyItem,
}
Fields§
§id: Option<String>
Property Identifier
name: String
Modify the value of this field when updating the column name of the property.
description: Option<String>
Although it is not explicitly stated in the official documentation, you can add a description to the property by specifying this.
unique_id: DatabaseUniqueIdPropertyItem
Implementations§
Source§impl DatabaseUniqueIdProperty
impl DatabaseUniqueIdProperty
Sourcepub fn name<T>(self, name: T) -> Self
pub fn name<T>(self, name: T) -> Self
Set the value of the name
field.
Modify the value of this field when updating the column name of the property.
Sourcepub fn description<T>(self, description: T) -> Self
pub fn description<T>(self, description: T) -> Self
Set the value of the description
field.
Although it is not explicitly stated in the official documentation, you can add a description to the property by specifying this.
Sourcepub fn unique_id(self, unique_id: DatabaseUniqueIdPropertyItem) -> Self
pub fn unique_id(self, unique_id: DatabaseUniqueIdPropertyItem) -> Self
Set the value of the unique_id
field.
Trait Implementations§
Source§impl Clone for DatabaseUniqueIdProperty
impl Clone for DatabaseUniqueIdProperty
Source§fn clone(&self) -> DatabaseUniqueIdProperty
fn clone(&self) -> DatabaseUniqueIdProperty
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 DatabaseUniqueIdProperty
impl Debug for DatabaseUniqueIdProperty
Source§impl Default for DatabaseUniqueIdProperty
impl Default for DatabaseUniqueIdProperty
Source§fn default() -> DatabaseUniqueIdProperty
fn default() -> DatabaseUniqueIdProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseUniqueIdProperty
impl<'de> Deserialize<'de> for DatabaseUniqueIdProperty
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 DatabaseUniqueIdProperty
impl PartialEq for DatabaseUniqueIdProperty
Source§impl Serialize for DatabaseUniqueIdProperty
impl Serialize for DatabaseUniqueIdProperty
impl Eq for DatabaseUniqueIdProperty
impl StructuralPartialEq for DatabaseUniqueIdProperty
Auto Trait Implementations§
impl Freeze for DatabaseUniqueIdProperty
impl RefUnwindSafe for DatabaseUniqueIdProperty
impl Send for DatabaseUniqueIdProperty
impl Sync for DatabaseUniqueIdProperty
impl Unpin for DatabaseUniqueIdProperty
impl UnwindSafe for DatabaseUniqueIdProperty
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