pub enum TitleText {
Rich(TextBody),
Reference {
formula: String,
cache: Option<String>,
},
}Expand description
A title’s text content (CT_Tx) — either rich text (reusing drawing::TextBody, the common
case for a chart or axis title) or a cell reference (<c:strRef>, valid per schema though
rarely used for titles in practice).
Variants§
Trait Implementations§
impl StructuralPartialEq for TitleText
Auto Trait Implementations§
impl Freeze for TitleText
impl RefUnwindSafe for TitleText
impl Send for TitleText
impl Sync for TitleText
impl Unpin for TitleText
impl UnsafeUnpin for TitleText
impl UnwindSafe for TitleText
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