pub struct DatabaseRollupDetail {
pub function: RollupFunction,
pub relation_property_id: String,
pub relation_property_name: String,
pub rollup_property_id: String,
pub rollup_property_name: String,
}
Fields§
§function: RollupFunction
§relation_property_id: String
The id of the related database property that is rolled up.
relation_property_name: String
The name of the related database property that is rolled up.
rollup_property_id: String
The id of the rollup property.
rollup_property_name: String
The name of the rollup property.
Implementations§
Source§impl DatabaseRollupDetail
impl DatabaseRollupDetail
Sourcepub fn function(self, function: RollupFunction) -> Self
pub fn function(self, function: RollupFunction) -> Self
Set the value of the function
field.
Sourcepub fn relation_property_id<T>(self, relation_property_id: T) -> Self
pub fn relation_property_id<T>(self, relation_property_id: T) -> Self
Set the value of the relation_property_id
field.
The id of the related database property that is rolled up.
Sourcepub fn relation_property_name<T>(self, relation_property_name: T) -> Self
pub fn relation_property_name<T>(self, relation_property_name: T) -> Self
Set the value of the relation_property_name
field.
The name of the related database property that is rolled up.
Sourcepub fn rollup_property_id<T>(self, rollup_property_id: T) -> Self
pub fn rollup_property_id<T>(self, rollup_property_id: T) -> Self
Set the value of the rollup_property_id
field.
The id of the rollup property.
Sourcepub fn rollup_property_name<T>(self, rollup_property_name: T) -> Self
pub fn rollup_property_name<T>(self, rollup_property_name: T) -> Self
Set the value of the rollup_property_name
field.
The name of the rollup property.
Trait Implementations§
Source§impl Clone for DatabaseRollupDetail
impl Clone for DatabaseRollupDetail
Source§fn clone(&self) -> DatabaseRollupDetail
fn clone(&self) -> DatabaseRollupDetail
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 DatabaseRollupDetail
impl Debug for DatabaseRollupDetail
Source§impl Default for DatabaseRollupDetail
impl Default for DatabaseRollupDetail
Source§fn default() -> DatabaseRollupDetail
fn default() -> DatabaseRollupDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseRollupDetail
impl<'de> Deserialize<'de> for DatabaseRollupDetail
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 DatabaseRollupDetail
impl PartialEq for DatabaseRollupDetail
Source§impl Serialize for DatabaseRollupDetail
impl Serialize for DatabaseRollupDetail
impl Eq for DatabaseRollupDetail
impl StructuralPartialEq for DatabaseRollupDetail
Auto Trait Implementations§
impl Freeze for DatabaseRollupDetail
impl RefUnwindSafe for DatabaseRollupDetail
impl Send for DatabaseRollupDetail
impl Sync for DatabaseRollupDetail
impl Unpin for DatabaseRollupDetail
impl UnwindSafe for DatabaseRollupDetail
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