Struct mit_commit::Comments
source · pub struct Comments<'a> { /* private fields */ }
Expand description
A collection of comments from a [CommitMessage
]
Implementations§
source§impl<'a> Comments<'a>
impl<'a> Comments<'a>
sourcepub fn iter(&self) -> Iter<'_, Comment<'_>>
pub fn iter(&self) -> Iter<'_, Comment<'_>>
Iterate over the Comment
in the Comments
Examples
use mit_commit::{Comment, Comments};
let trailers = Comments::from(vec![
Comment::from("# Comment 1"),
Comment::from("# Comment 2"),
Comment::from("# Comment 3"),
]);
let mut iterator = trailers.iter();
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 1")));
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 2")));
assert_eq!(iterator.next(), Some(&Comment::from("# Comment 3")));
assert_eq!(iterator.next(), None);
Trait Implementations§
source§impl<'a> IntoIterator for Comments<'a>
impl<'a> IntoIterator for Comments<'a>
source§fn into_iter(self) -> Self::IntoIter
fn into_iter(self) -> Self::IntoIter
Iterate over the Comment
in the Comments
Examples
use mit_commit::{Comment, Comments};
let trailers = Comments::from(vec![
Comment::from("# Comment 1"),
Comment::from("# Comment 2"),
Comment::from("# Comment 3"),
]);
let mut iterator = trailers.into_iter();
assert_eq!(iterator.next(), Some(Comment::from("# Comment 1")));
assert_eq!(iterator.next(), Some(Comment::from("# Comment 2")));
assert_eq!(iterator.next(), Some(Comment::from("# Comment 3")));
assert_eq!(iterator.next(), None);