pub struct MinimapGutterColors {
pub added_background: Option<String>,
pub modified_background: Option<String>,
pub deleted_background: Option<String>,
}
Fields§
§added_background: Option<String>
Minimap gutter color for added content.
modified_background: Option<String>
Minimap gutter color for modified content.
deleted_background: Option<String>
Minimap gutter color for deleted content.
Trait Implementations§
Source§impl Clone for MinimapGutterColors
impl Clone for MinimapGutterColors
Source§fn clone(&self) -> MinimapGutterColors
fn clone(&self) -> MinimapGutterColors
Returns a copy 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 MinimapGutterColors
impl Debug for MinimapGutterColors
Source§impl<'de> Deserialize<'de> for MinimapGutterColors
impl<'de> Deserialize<'de> for MinimapGutterColors
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 MinimapGutterColors
impl RefUnwindSafe for MinimapGutterColors
impl Send for MinimapGutterColors
impl Sync for MinimapGutterColors
impl Unpin for MinimapGutterColors
impl UnwindSafe for MinimapGutterColors
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