pub struct CodeStyle {
pub indent_size: usize,
pub use_tabs: bool,
pub max_line_length: usize,
pub naming_convention: NamingConvention,
pub include_error_handling: bool,
}Expand description
Code style preferences
Fields§
§indent_size: usizeIndentation size
use_tabs: boolUse tabs instead of spaces
max_line_length: usizeMaximum line length
naming_convention: NamingConventionNaming convention
include_error_handling: boolInclude error handling
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeStyle
impl RefUnwindSafe for CodeStyle
impl Send for CodeStyle
impl Sync for CodeStyle
impl Unpin for CodeStyle
impl UnwindSafe for CodeStyle
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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