pub struct PivotCacheDefinition {
pub xmlns: String,
pub xmlns_r: String,
pub r_id: Option<String>,
pub record_count: Option<u32>,
pub cache_source: CacheSource,
pub cache_fields: CacheFields,
}Expand description
Root element for pivot cache definition.
Fields§
§xmlns: String§xmlns_r: String§r_id: Option<String>§record_count: Option<u32>§cache_source: CacheSource§cache_fields: CacheFieldsTrait Implementations§
Source§impl Clone for PivotCacheDefinition
impl Clone for PivotCacheDefinition
Source§fn clone(&self) -> PivotCacheDefinition
fn clone(&self) -> PivotCacheDefinition
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 PivotCacheDefinition
impl Debug for PivotCacheDefinition
Source§impl<'de> Deserialize<'de> for PivotCacheDefinition
impl<'de> Deserialize<'de> for PivotCacheDefinition
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 PivotCacheDefinition
impl PartialEq for PivotCacheDefinition
Source§impl Serialize for PivotCacheDefinition
impl Serialize for PivotCacheDefinition
impl StructuralPartialEq for PivotCacheDefinition
Auto Trait Implementations§
impl Freeze for PivotCacheDefinition
impl RefUnwindSafe for PivotCacheDefinition
impl Send for PivotCacheDefinition
impl Sync for PivotCacheDefinition
impl Unpin for PivotCacheDefinition
impl UnwindSafe for PivotCacheDefinition
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