pub struct Body<'a> { /* private fields */ }
Expand description
A single contiguous block of [CommitMessage] text
Append one Body onto another
This is for concatenating multiple [Bodies] together
use indoc::indoc;
use mit_commit::Body;
assert_eq!(
Body::from(indoc!(
"
Example 1
Example 2"
)),
Body::from("Example 1").append(&Body::from("Example 2"))
)
Is this Body empty
An empty Body usually indicate a paragraph break in a
[CommitMessage] so it’s handy to be able to see them.
use indoc::indoc;
use mit_commit::Body;
assert_eq!(Body::from("").is_empty(), true)
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Formats the value using the given formatter. Read more
sourceimpl<'a> From<&'a str> for Body<'a>
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
The type returned in the event of a conversion error.
sourceimpl<'a> Eq for Body<'a>
sourceimpl<T> Any for T where
T: 'static + ?Sized,
sourceimpl<T> Borrow<T> for T where
T: ?Sized,
Immutably borrows from an owned value. Read more
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
Mutably borrows from an owned value. Read more
sourceimpl<T> From<T> for T
Returns the argument unchanged.
sourceimpl<T, U> Into<U> for T where
U: From<T>,
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
sourceimpl<T> ToOwned for T where
T: Clone,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
sourceimpl<T, U> TryFrom<U> for T where
U: Into<T>,
The type returned in the event of a conversion error.
sourceimpl<T, U> TryInto<U> for T where
U: TryFrom<T>,
The type returned in the event of a conversion error.