pub struct Theme {
pub name: String,
pub path: PathBuf,
pub style: String,
pub image_path: Option<PathBuf>,
pub data: ThemeData,
pub is_current: bool,
}Fields§
§name: String§path: PathBuf§style: String§image_path: Option<PathBuf>§data: ThemeData§is_current: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Theme
impl RefUnwindSafe for Theme
impl Send for Theme
impl Sync for Theme
impl Unpin for Theme
impl UnsafeUnpin for Theme
impl UnwindSafe for Theme
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