pub struct StyleMap { /* private fields */ }
Expand description

A style-map is one way for conditional formatting of cells.

It seems this is always translated into calcext:conditional-formats which seem to be the preferred way to deal with this. But it still works somewhat.

Implementations§

source§

impl StyleMap

source

pub fn new_empty() -> Self

source

pub fn new( condition: Condition, applied_style: AnyStyleRef, base_cell: Option<CellRef> ) -> Self

Create a stylemap. When the condition is fullfilled the style applied_style is used. The base_cell is used to resolve all relative cell-references within the condition.

source

pub fn condition(&self) -> &Condition

Condition

source

pub fn set_condition(&mut self, cond: Condition)

Condition

source

pub fn applied_style(&self) -> &AnyStyleRef

The applied style.

source

pub fn set_applied_style(&mut self, style: AnyStyleRef)

Sets the applied style.

source

pub fn base_cell(&self) -> Option<&CellRef>

Base cell.

source

pub fn set_base_cell(&mut self, cellref: Option<CellRef>)

Sets the base cell.

Trait Implementations§

source§

impl Clone for StyleMap

source§

fn clone(&self) -> StyleMap

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for StyleMap

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl GetSize for StyleMap

source§

fn get_heap_size(&self) -> usize

Determines how many bytes this object occupies inside the heap. Read more
source§

fn get_stack_size() -> usize

Determines how may bytes this object occupies inside the stack. Read more
source§

fn get_size(&self) -> usize

Determines the total size of the object. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.