pub struct Theme {
pub background: [u8; 4],
pub line_numbers: [u8; 4],
pub line_numbers_bg: [u8; 4],
pub text: [u8; 4],
pub cursor: [u8; 4],
pub identifier: [u8; 4],
pub number: [u8; 4],
pub keywords: [u8; 4],
pub brackets: [u8; 4],
pub comments: [u8; 4],
pub string: [u8; 4],
pub error: [u8; 4],
}Fields§
§background: [u8; 4]§line_numbers: [u8; 4]§line_numbers_bg: [u8; 4]§text: [u8; 4]§cursor: [u8; 4]§identifier: [u8; 4]§number: [u8; 4]§keywords: [u8; 4]§brackets: [u8; 4]§comments: [u8; 4]§string: [u8; 4]§error: [u8; 4]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 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