pub struct ViewFilter {
pub include_values: bool,
pub include_formulas: bool,
pub include_formatting: bool,
pub include_info_diagnostics: bool,
pub sheets: Option<Vec<usize>>,
}Expand description
Controls which change categories are visible in a DiffView.
Fields§
§include_values: bool§include_formulas: bool§include_formatting: boolFormatting diffs (always false until RFC-022 is implemented).
include_info_diagnostics: bool§sheets: Option<Vec<usize>>If Some, only include changes from the listed sheet indices (0-based).
Trait Implementations§
Source§impl Clone for ViewFilter
impl Clone for ViewFilter
Source§fn clone(&self) -> ViewFilter
fn clone(&self) -> ViewFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ViewFilter
impl Debug for ViewFilter
Auto Trait Implementations§
impl Freeze for ViewFilter
impl RefUnwindSafe for ViewFilter
impl Send for ViewFilter
impl Sync for ViewFilter
impl Unpin for ViewFilter
impl UnsafeUnpin for ViewFilter
impl UnwindSafe for ViewFilter
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