[−][src]Struct git_checks::CommitSubject
Check commit message subjects for invalid patterns.
Patterns which are checked for:
- overly long or short summary lines;
- work-in-progress messages;
fixup!
andsquash!
messages; and- custom prefixes.
Commit messages which appear to have been auto generated by actions such as merging or reverting commits will skip the summary line length limit (if enforced).
Implementations
impl CommitSubject
[src]
pub fn builder() -> CommitSubjectBuilder
[src]
Create a new builder.
Trait Implementations
impl Check for CommitSubject
[src]
fn name(&self) -> &str
[src]
fn check(
&self,
_: &CheckGitContext,
commit: &Commit
) -> Result<CheckResult, Box<dyn Error>>
[src]
&self,
_: &CheckGitContext,
commit: &Commit
) -> Result<CheckResult, Box<dyn Error>>
impl Clone for CommitSubject
[src]
fn clone(&self) -> CommitSubject
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for CommitSubject
[src]
impl Default for CommitSubject
[src]
Auto Trait Implementations
impl !RefUnwindSafe for CommitSubject
impl Send for CommitSubject
impl Sync for CommitSubject
impl Unpin for CommitSubject
impl UnwindSafe for CommitSubject
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Check for T where
T: ContentCheck,
[src]
T: ContentCheck,
fn name(&self) -> &str
[src]
fn check(
&self,
ctx: &CheckGitContext,
commit: &Commit
) -> Result<CheckResult, Box<dyn Error + 'static>>
[src]
&self,
ctx: &CheckGitContext,
commit: &Commit
) -> Result<CheckResult, Box<dyn Error + 'static>>
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,