pub struct Theme<'a> {
pub name: Option<Cow<'a, str>>,
pub elements: ThemeElements<'a>,
pub defaults: Option<ObjectDefaults>,
pub extra_clr_scheme_lst: Option<ExtraClrSchemeLst>,
pub cust_clr_lst: Option<CustClrLst<'a>>,
pub ext_lst: Option<ExtLst>,
}
Expand description
The root element of the main document part.
Fields§
§name: Option<Cow<'a, str>>
§elements: ThemeElements<'a>
§defaults: Option<ObjectDefaults>
§extra_clr_scheme_lst: Option<ExtraClrSchemeLst>
§cust_clr_lst: Option<CustClrLst<'a>>
§ext_lst: Option<ExtLst>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Theme<'a>
impl<'a> RefUnwindSafe for Theme<'a>
impl<'a> Send for Theme<'a>
impl<'a> Sync for Theme<'a>
impl<'a> Unpin for Theme<'a>
impl<'a> UnwindSafe for Theme<'a>
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