pub struct SlicerCacheDefinition {
pub name: String,
pub source_name: String,
pub table_slicer_cache: Option<TableSlicerCache>,
}Expand description
In-memory representation of a slicer cache definition.
Serialized manually (not via serde) because the XML uses namespace-prefixed
child elements (x15:tableSlicerCache) that serde cannot handle.
Fields§
§name: String§source_name: String§table_slicer_cache: Option<TableSlicerCache>Trait Implementations§
Source§impl Clone for SlicerCacheDefinition
impl Clone for SlicerCacheDefinition
Source§fn clone(&self) -> SlicerCacheDefinition
fn clone(&self) -> SlicerCacheDefinition
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 SlicerCacheDefinition
impl Debug for SlicerCacheDefinition
Source§impl PartialEq for SlicerCacheDefinition
impl PartialEq for SlicerCacheDefinition
impl StructuralPartialEq for SlicerCacheDefinition
Auto Trait Implementations§
impl Freeze for SlicerCacheDefinition
impl RefUnwindSafe for SlicerCacheDefinition
impl Send for SlicerCacheDefinition
impl Sync for SlicerCacheDefinition
impl Unpin for SlicerCacheDefinition
impl UnwindSafe for SlicerCacheDefinition
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