pub struct StyleProfile {
pub naming_convention: NamingConvention,
pub comment_style: CommentStyle,
pub max_line_length: Option<usize>,
pub indentation: IndentationStyle,
pub commit_format: CommitFormat,
}Expand description
Style profile extracted from repository analysis
Fields§
§naming_convention: NamingConventionNaming convention preference
comment_style: CommentStyleComment style preference
max_line_length: Option<usize>Line length preference
indentation: IndentationStyleIndentation style
commit_format: CommitFormatCommit message format
Trait Implementations§
Source§impl Clone for StyleProfile
impl Clone for StyleProfile
Source§fn clone(&self) -> StyleProfile
fn clone(&self) -> StyleProfile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StyleProfile
impl Debug for StyleProfile
Source§impl<'de> Deserialize<'de> for StyleProfile
impl<'de> Deserialize<'de> for StyleProfile
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
Auto Trait Implementations§
impl Freeze for StyleProfile
impl RefUnwindSafe for StyleProfile
impl Send for StyleProfile
impl Sync for StyleProfile
impl Unpin for StyleProfile
impl UnsafeUnpin for StyleProfile
impl UnwindSafe for StyleProfile
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