pub struct DatabaseLastEditedTimeProperty {
pub id: Option<String>,
pub name: String,
pub description: Option<String>,
pub last_edited_time: HashMap<(), ()>,
}
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.
last_edited_time: HashMap<(), ()>
An empty object ({}
)
Implementations§
Source§impl DatabaseLastEditedTimeProperty
impl DatabaseLastEditedTimeProperty
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 last_edited_time(self, last_edited_time: HashMap<(), ()>) -> Self
pub fn last_edited_time(self, last_edited_time: HashMap<(), ()>) -> Self
Set the value of the last_edited_time
field.
An empty object ({}
)
Trait Implementations§
Source§impl Clone for DatabaseLastEditedTimeProperty
impl Clone for DatabaseLastEditedTimeProperty
Source§fn clone(&self) -> DatabaseLastEditedTimeProperty
fn clone(&self) -> DatabaseLastEditedTimeProperty
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 Default for DatabaseLastEditedTimeProperty
impl Default for DatabaseLastEditedTimeProperty
Source§fn default() -> DatabaseLastEditedTimeProperty
fn default() -> DatabaseLastEditedTimeProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseLastEditedTimeProperty
impl<'de> Deserialize<'de> for DatabaseLastEditedTimeProperty
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 DatabaseLastEditedTimeProperty
impl PartialEq for DatabaseLastEditedTimeProperty
Source§fn eq(&self, other: &DatabaseLastEditedTimeProperty) -> bool
fn eq(&self, other: &DatabaseLastEditedTimeProperty) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for DatabaseLastEditedTimeProperty
impl StructuralPartialEq for DatabaseLastEditedTimeProperty
Auto Trait Implementations§
impl Freeze for DatabaseLastEditedTimeProperty
impl RefUnwindSafe for DatabaseLastEditedTimeProperty
impl Send for DatabaseLastEditedTimeProperty
impl Sync for DatabaseLastEditedTimeProperty
impl Unpin for DatabaseLastEditedTimeProperty
impl UnwindSafe for DatabaseLastEditedTimeProperty
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