Struct git_object::commit::MessageRef
source · [−]Expand description
A parsed commit message that assumes a title separated from the body by two consecutive newlines.
Titles can have any amount of whitespace
Fields
title: &'a BStr
The title of the commit, as separated from the body with two consecutive newlines. The newlines are not included.
body: Option<&'a BStr>
All bytes not consumed by the title, excluding the separating newlines.
The body is None
if there was now title separation or the body was empty after the separator.
Implementations
sourceimpl<'a> MessageRef<'a>
impl<'a> MessageRef<'a>
sourcepub fn from_bytes(input: &'a [u8]) -> Self
pub fn from_bytes(input: &'a [u8]) -> Self
Parse the given input
as message.
Note that this cannot fail as everything will be interpreted as title if there is no body separator.
sourcepub fn summary(&self) -> Cow<'a, BStr>
pub fn summary(&self) -> Cow<'a, BStr>
Produce a short commit summary for the message title.
This means the following
- Take the subject line which is delimited by two newlines (\n\n)
- transform intermediate consecutive whitespace including \r into one space
The resulting summary will have folded whitespace before a newline into spaces and stopped that process once two consecutive newlines are encountered.
Trait Implementations
sourceimpl<'a> Clone for MessageRef<'a>
impl<'a> Clone for MessageRef<'a>
sourcefn clone(&self) -> MessageRef<'a>
fn clone(&self) -> MessageRef<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for MessageRef<'a>
impl<'a> Debug for MessageRef<'a>
sourceimpl<'de: 'a, 'a> Deserialize<'de> for MessageRef<'a>
impl<'de: 'a, 'a> Deserialize<'de> for MessageRef<'a>
sourcefn 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
sourceimpl<'a> Hash for MessageRef<'a>
impl<'a> Hash for MessageRef<'a>
sourceimpl<'a> Ord for MessageRef<'a>
impl<'a> Ord for MessageRef<'a>
sourcefn cmp(&self, other: &MessageRef<'a>) -> Ordering
fn cmp(&self, other: &MessageRef<'a>) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<'a> PartialEq<MessageRef<'a>> for MessageRef<'a>
impl<'a> PartialEq<MessageRef<'a>> for MessageRef<'a>
sourcefn eq(&self, other: &MessageRef<'a>) -> bool
fn eq(&self, other: &MessageRef<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MessageRef<'a>) -> bool
fn ne(&self, other: &MessageRef<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> PartialOrd<MessageRef<'a>> for MessageRef<'a>
impl<'a> PartialOrd<MessageRef<'a>> for MessageRef<'a>
sourcefn partial_cmp(&self, other: &MessageRef<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &MessageRef<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<'a> Serialize for MessageRef<'a>
impl<'a> Serialize for MessageRef<'a>
impl<'a> Copy for MessageRef<'a>
impl<'a> Eq for MessageRef<'a>
impl<'a> StructuralEq for MessageRef<'a>
impl<'a> StructuralPartialEq for MessageRef<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for MessageRef<'a>
impl<'a> Send for MessageRef<'a>
impl<'a> Sync for MessageRef<'a>
impl<'a> Unpin for MessageRef<'a>
impl<'a> UnwindSafe for MessageRef<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more