pub struct SentenceCapitalization;
Trait Implementations§
Source§impl Clone for SentenceCapitalization
impl Clone for SentenceCapitalization
Source§fn clone(&self) -> SentenceCapitalization
fn clone(&self) -> SentenceCapitalization
Returns a copy 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 SentenceCapitalization
impl Debug for SentenceCapitalization
Source§impl Default for SentenceCapitalization
impl Default for SentenceCapitalization
Source§fn default() -> SentenceCapitalization
fn default() -> SentenceCapitalization
Returns the “default value” for a type. Read more
Source§impl Linter for SentenceCapitalization
impl Linter for SentenceCapitalization
Source§fn lint(&mut self, document: &Document) -> Vec<Lint>
fn lint(&mut self, document: &Document) -> Vec<Lint>
A linter that checks to make sure the first word of each sentence is capitalized.
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
A user-facing description of what kinds of grammatical errors this rule looks for.
It is usually shown in settings menus.
impl Copy for SentenceCapitalization
Auto Trait Implementations§
impl Freeze for SentenceCapitalization
impl RefUnwindSafe for SentenceCapitalization
impl Send for SentenceCapitalization
impl Sync for SentenceCapitalization
impl Unpin for SentenceCapitalization
impl UnwindSafe for SentenceCapitalization
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