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 default implementation is almost always
sufficient, and should not be overridden without very good reason. Read more
The type returned in the event of a conversion error.
sourceimpl<'a> Eq for Body<'a>
sourceimpl<T> Any for Twhere
T: 'static + ?Sized,
sourceimpl<T> Borrow<T> for Twhere
T: ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
sourceimpl<T> From<T> for T
Returns the argument unchanged.
sourceimpl<T, U> Into<U> for Twhere
U: From<T>,
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
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 Twhere
U: Into<T>,
The type returned in the event of a conversion error.
sourceimpl<T, U> TryInto<U> for Twhere
U: TryFrom<T>,
The type returned in the event of a conversion error.