pub struct Bookmark {
pub name: NameKey,
pub display_name: Option<String>,
pub filters: Vec<Filter>,
pub sections: Vec<BookmarkSection>,
}Expand description
A saved exploration state, restorable by a reader.
Bookmark bindings are enumerated like any other: applying a bookmark re-applies its saved filters and projections, so a field kept alive only by a bookmark is still alive.
Fields§
§name: NameKeyBookmark object name — the PBIR file name, and the provenance key.
display_name: Option<String>Author-facing name.
filters: Vec<Filter>Filters saved at report level (explorationState.filters).
sections: Vec<BookmarkSection>Captured state, per page it spans (usually one).
Trait Implementations§
impl Eq for Bookmark
impl StructuralPartialEq for Bookmark
Auto Trait Implementations§
impl Freeze for Bookmark
impl RefUnwindSafe for Bookmark
impl Send for Bookmark
impl Sync for Bookmark
impl Unpin for Bookmark
impl UnsafeUnpin for Bookmark
impl UnwindSafe for Bookmark
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.