pub struct SlicerInfo {
pub name: String,
pub caption: String,
pub table_name: String,
pub column_name: String,
pub style: Option<String>,
}Expand description
Information about an existing slicer, returned by get_slicers.
Fields§
§name: StringThe slicer’s unique name.
caption: StringThe display caption.
table_name: StringThe source table name.
column_name: StringThe column name being filtered.
style: Option<String>The visual style name, if set.
Trait Implementations§
Source§impl Clone for SlicerInfo
impl Clone for SlicerInfo
Source§fn clone(&self) -> SlicerInfo
fn clone(&self) -> SlicerInfo
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 moreAuto Trait Implementations§
impl Freeze for SlicerInfo
impl RefUnwindSafe for SlicerInfo
impl Send for SlicerInfo
impl Sync for SlicerInfo
impl Unpin for SlicerInfo
impl UnwindSafe for SlicerInfo
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