pub struct RawTheme {
pub name: String,
pub settings: Option<Vec<RawThemeRule>>,
pub token_colors: Option<Vec<RawThemeRule>>,
}Expand description
A parsed, uncompiled TextMate theme.
Fields§
§name: StringTheme name.
settings: Option<Vec<RawThemeRule>>TextMate theme settings.
token_colors: Option<Vec<RawThemeRule>>VS Code token color rules.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawTheme
impl RefUnwindSafe for RawTheme
impl Send for RawTheme
impl Sync for RawTheme
impl Unpin for RawTheme
impl UnsafeUnpin for RawTheme
impl UnwindSafe for RawTheme
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