pub struct ConditionalFormattingRule { /* private fields */ }Implementations§
Source§impl ConditionalFormattingRule
impl ConditionalFormattingRule
pub fn get_type(&self) -> &ConditionalFormatValues
pub fn set_type(&mut self, value: ConditionalFormatValues) -> &mut Self
pub fn operator(&self) -> &ConditionalFormattingOperatorValues
pub fn get_operator(&self) -> &ConditionalFormattingOperatorValues
👎Deprecated since 3.0.0:
Use operator()
pub fn set_operator( &mut self, value: ConditionalFormattingOperatorValues, ) -> &mut Self
pub fn text(&self) -> &str
pub fn get_text(&self) -> &str
👎Deprecated since 3.0.0:
Use text()
pub fn set_text<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn priority(&self) -> i32
pub fn get_priority(&self) -> i32
👎Deprecated since 3.0.0:
Use priority()
pub fn set_priority(&mut self, value: i32) -> &mut Self
pub fn percent(&self) -> bool
pub fn get_percent(&self) -> bool
👎Deprecated since 3.0.0:
Use percent()
pub fn set_percent(&mut self, value: bool) -> &mut Self
pub fn bottom(&self) -> bool
pub fn get_bottom(&self) -> bool
👎Deprecated since 3.0.0:
Use bottom()
pub fn set_bottom(&mut self, value: bool) -> &mut Self
pub fn rank(&self) -> u32
pub fn get_rank(&self) -> u32
👎Deprecated since 3.0.0:
Use rank()
pub fn set_rank(&mut self, value: u32) -> &mut Self
pub fn stop_if_true(&self) -> bool
pub fn get_stop_if_true(&self) -> bool
👎Deprecated since 3.0.0:
Use stop_if_true()
pub fn set_stop_if_true(&mut self, value: bool) -> &mut Self
pub fn std_dev(&self) -> i32
pub fn get_std_dev(&self) -> i32
👎Deprecated since 3.0.0:
Use std_dev()
pub fn set_std_dev(&mut self, value: i32) -> &mut Self
pub fn above_average(&self) -> bool
pub fn get_above_average(&self) -> bool
👎Deprecated since 3.0.0:
Use above_average()
pub fn set_above_average(&mut self, value: bool) -> &mut Self
pub fn equal_average(&self) -> bool
pub fn get_equal_average(&self) -> bool
👎Deprecated since 3.0.0:
Use equal_average()
pub fn set_equal_average(&mut self, value: bool) -> &mut Self
pub fn time_period(&self) -> &TimePeriodValues
pub fn get_time_period(&self) -> &TimePeriodValues
👎Deprecated since 3.0.0:
Use time_period()
pub fn set_time_period(&mut self, value: TimePeriodValues) -> &mut Self
pub fn style(&self) -> Option<&Style>
pub fn get_style(&self) -> Option<&Style>
👎Deprecated since 3.0.0:
Use style()
pub fn set_style(&mut self, value: Style) -> &mut Self
pub fn remove_style(&mut self) -> &mut Self
pub fn color_scale(&self) -> Option<&ColorScale>
pub fn get_color_scale(&self) -> Option<&ColorScale>
👎Deprecated since 3.0.0:
Use color_scale()
pub fn set_color_scale(&mut self, value: ColorScale) -> &mut Self
pub fn remove_color_scale(&mut self) -> &mut Self
pub fn data_bar(&self) -> Option<&DataBar>
pub fn get_data_bar(&self) -> Option<&DataBar>
👎Deprecated since 3.0.0:
Use data_bar()
pub fn set_data_bar(&mut self, value: DataBar) -> &mut Self
pub fn remove_data_bar(&mut self) -> &mut Self
pub fn icon_set(&self) -> Option<&IconSet>
pub fn get_icon_set(&self) -> Option<&IconSet>
👎Deprecated since 3.0.0:
Use icon_set()
pub fn set_icon_set(&mut self, value: IconSet) -> &mut Self
pub fn remove_icon_set(&mut self) -> &mut Self
pub fn formula(&self) -> Option<&Formula>
pub fn get_formula(&self) -> Option<&Formula>
👎Deprecated since 3.0.0:
Use formula()
pub fn set_formula(&mut self, value: Formula) -> &mut Self
pub fn remove_formula(&mut self) -> &mut Self
Trait Implementations§
Source§impl Clone for ConditionalFormattingRule
impl Clone for ConditionalFormattingRule
Source§fn clone(&self) -> ConditionalFormattingRule
fn clone(&self) -> ConditionalFormattingRule
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 ConditionalFormattingRule
impl Debug for ConditionalFormattingRule
Source§impl Default for ConditionalFormattingRule
impl Default for ConditionalFormattingRule
Source§fn default() -> ConditionalFormattingRule
fn default() -> ConditionalFormattingRule
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConditionalFormattingRule
impl RefUnwindSafe for ConditionalFormattingRule
impl Send for ConditionalFormattingRule
impl Sync for ConditionalFormattingRule
impl Unpin for ConditionalFormattingRule
impl UnsafeUnpin for ConditionalFormattingRule
impl UnwindSafe for ConditionalFormattingRule
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