pub struct FormattingOptions {
pub tab_size: u64,
pub insert_spaces: bool,
pub properties: HashMap<String, FormattingProperty>,
}Expand description
Value-object describing what options formatting should use.
Fields§
§tab_size: u64Size of a tab in spaces.
insert_spaces: boolPrefer spaces over tabs.
properties: HashMap<String, FormattingProperty>Signature for further properties.
Trait Implementations§
Source§impl Debug for FormattingOptions
impl Debug for FormattingOptions
Source§impl<'de> Deserialize<'de> for FormattingOptions
impl<'de> Deserialize<'de> for FormattingOptions
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
Source§impl PartialEq for FormattingOptions
impl PartialEq for FormattingOptions
Source§fn eq(&self, other: &FormattingOptions) -> bool
fn eq(&self, other: &FormattingOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FormattingOptions
impl Serialize for FormattingOptions
impl StructuralPartialEq for FormattingOptions
Auto Trait Implementations§
impl Freeze for FormattingOptions
impl RefUnwindSafe for FormattingOptions
impl Send for FormattingOptions
impl Sync for FormattingOptions
impl Unpin for FormattingOptions
impl UnsafeUnpin for FormattingOptions
impl UnwindSafe for FormattingOptions
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