LintersSettingsTable

Struct LintersSettingsTable 

Source
pub struct LintersSettingsTable {
Show 32 fields pub heading_style: MD003HeadingStyleTable, pub ul_style: MD004UlStyleTable, pub ol_prefix: MD029OlPrefixTable, pub ul_indent: MD007UlIndentTable, pub trailing_spaces: MD009TrailingSpacesTable, pub hard_tabs: MD010HardTabsTable, pub multiple_blank_lines: MD012MultipleBlankLinesTable, pub line_length: MD013LineLengthTable, pub headings_blanks: MD022HeadingsBlanksTable, pub single_h1: MD025SingleH1Table, pub first_line_heading: MD041FirstLineHeadingTable, pub trailing_punctuation: MD026TrailingPunctuationTable, pub blockquote_spaces: MD027BlockquoteSpacesTable, pub list_marker_space: MD030ListMarkerSpaceTable, pub fenced_code_blanks: MD031FencedCodeBlanksTable, pub inline_html: MD033InlineHtmlTable, pub hr_style: MD035HrStyleTable, pub emphasis_as_heading: MD036EmphasisAsHeadingTable, pub fenced_code_language: MD040FencedCodeLanguageTable, pub code_block_style: MD046CodeBlockStyleTable, pub code_fence_style: MD048CodeFenceStyleTable, pub emphasis_style: MD049EmphasisStyleTable, pub strong_style: MD050StrongStyleTable, pub multiple_headings: MD024MultipleHeadingsTable, pub required_headings: MD043RequiredHeadingsTable, pub proper_names: MD044ProperNamesTable, pub link_fragments: MD051LinkFragmentsTable, pub reference_links_images: MD052ReferenceLinksImagesTable, pub link_image_reference_definitions: MD053LinkImageReferenceDefinitionsTable, pub link_image_style: MD054LinkImageStyleTable, pub table_pipe_style: MD055TablePipeStyleTable, pub descriptive_link_text: MD059DescriptiveLinkTextTable,
}

Fields§

§heading_style: MD003HeadingStyleTable§ul_style: MD004UlStyleTable§ol_prefix: MD029OlPrefixTable§ul_indent: MD007UlIndentTable§trailing_spaces: MD009TrailingSpacesTable§hard_tabs: MD010HardTabsTable§multiple_blank_lines: MD012MultipleBlankLinesTable§line_length: MD013LineLengthTable§headings_blanks: MD022HeadingsBlanksTable§single_h1: MD025SingleH1Table§first_line_heading: MD041FirstLineHeadingTable§trailing_punctuation: MD026TrailingPunctuationTable§blockquote_spaces: MD027BlockquoteSpacesTable§list_marker_space: MD030ListMarkerSpaceTable§fenced_code_blanks: MD031FencedCodeBlanksTable§inline_html: MD033InlineHtmlTable§hr_style: MD035HrStyleTable§emphasis_as_heading: MD036EmphasisAsHeadingTable§fenced_code_language: MD040FencedCodeLanguageTable§code_block_style: MD046CodeBlockStyleTable§code_fence_style: MD048CodeFenceStyleTable§emphasis_style: MD049EmphasisStyleTable§strong_style: MD050StrongStyleTable§multiple_headings: MD024MultipleHeadingsTable§required_headings: MD043RequiredHeadingsTable§proper_names: MD044ProperNamesTable§link_fragments: MD051LinkFragmentsTable§reference_links_images: MD052ReferenceLinksImagesTable§link_image_reference_definitions: MD053LinkImageReferenceDefinitionsTable§link_image_style: MD054LinkImageStyleTable§table_pipe_style: MD055TablePipeStyleTable§descriptive_link_text: MD059DescriptiveLinkTextTable

Trait Implementations§

Source§

impl Clone for LintersSettingsTable

Source§

fn clone(&self) -> LintersSettingsTable

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LintersSettingsTable

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for LintersSettingsTable

Source§

fn default() -> LintersSettingsTable

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for LintersSettingsTable

Source§

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 LintersSettingsTable

Source§

fn eq(&self, other: &LintersSettingsTable) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for LintersSettingsTable

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,