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: u64
Size of a tab in spaces.
insert_spaces: bool
Prefer 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§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 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