pub struct ParsersConfig {
pub generic_max_lines: usize,
pub sub_fragment_threshold_lines: u32,
pub sub_fragment_target_lines: u32,
pub max_sub_depth: u32,
pub max_recursion_depth: u32,
pub container_search_max_depth: u32,
pub min_fragment_lines: u32,
}Fields§
§generic_max_lines: usize§sub_fragment_threshold_lines: u32§sub_fragment_target_lines: u32§max_sub_depth: u32§max_recursion_depth: u32§container_search_max_depth: u32§min_fragment_lines: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsersConfig
impl RefUnwindSafe for ParsersConfig
impl Send for ParsersConfig
impl Sync for ParsersConfig
impl Unpin for ParsersConfig
impl UnsafeUnpin for ParsersConfig
impl UnwindSafe for ParsersConfig
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more