pub struct TestingColors {Show 13 fields
pub icon_failed: Option<String>,
pub icon_errored: Option<String>,
pub icon_passed: Option<String>,
pub run_action: Option<String>,
pub icon_queued: Option<String>,
pub icon_unset: Option<String>,
pub icon_skipped: Option<String>,
pub peek_border: Option<String>,
pub peek_header_background: Option<String>,
pub message_error_decoration_foreground: Option<String>,
pub message_error_line_background: Option<String>,
pub message_info_decoration_foreground: Option<String>,
pub message_info_line_background: Option<String>,
}Fields§
§icon_failed: Option<String>Color for the ‘failed’ icon in the test explorer.
icon_errored: Option<String>Color for the ‘Errored’ icon in the test explorer.
icon_passed: Option<String>Color for the ‘passed’ icon in the test explorer.
run_action: Option<String>Color for ‘run’ icons in the editor.
icon_queued: Option<String>Color for the ‘Queued’ icon in the test explorer.
icon_unset: Option<String>Color for the ‘Unset’ icon in the test explorer.
icon_skipped: Option<String>Color for the ‘Skipped’ icon in the test explorer.
peek_border: Option<String>Color of the peek view borders and arrow.
peek_header_background: Option<String>Color of the peek view borders and arrow.
message_error_decoration_foreground: Option<String>Text color of test error messages shown inline in the editor.
message_error_line_background: Option<String>Margin color beside error messages shown inline in the editor.
message_info_decoration_foreground: Option<String>Text color of test info messages shown inline in the editor.
message_info_line_background: Option<String>Margin color beside info messages shown inline in the editor.
Trait Implementations§
Source§impl Clone for TestingColors
impl Clone for TestingColors
Source§fn clone(&self) -> TestingColors
fn clone(&self) -> TestingColors
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TestingColors
impl Debug for TestingColors
Source§impl<'de> Deserialize<'de> for TestingColors
impl<'de> Deserialize<'de> for TestingColors
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TestingColors
impl RefUnwindSafe for TestingColors
impl Send for TestingColors
impl Sync for TestingColors
impl Unpin for TestingColors
impl UnwindSafe for TestingColors
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