pub struct Settings {
pub prefix_func: bool,
pub prefix_alias: bool,
pub prefix_class: bool,
pub prefix_type: bool,
pub expand_opt: bool,
pub layout: Layout,
pub indent_width: usize,
}Fields§
§prefix_func: boolPrefix function name with ---@mod name
prefix_alias: boolPrefix ---@alias tag with ---@mod/return name
prefix_class: boolPrefix ---@class tag with ---@mod/return name
prefix_type: boolPrefix ---@type tag with ---@mod name
expand_opt: boolExpand ? to nil|<type>
layout: LayoutVimdoc text layout
indent_width: usizeControls the indent width
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnwindSafe for Settings
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