pub struct CommentHistoryStep {
pub author: IdentityStub,
pub message: String,
pub files: Vec<File>,
pub at: TimeStamp,
}Expand description
One version of this comment in the history.
Fields§
The author of the change.
message: StringThe new message of the comment.
files: Vec<File>The new files associated with the comment.
at: TimeStampWhen this change happened.
Trait Implementations§
Source§impl Clone for CommentHistoryStep
impl Clone for CommentHistoryStep
Source§fn clone(&self) -> CommentHistoryStep
fn clone(&self) -> CommentHistoryStep
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CommentHistoryStep
impl RefUnwindSafe for CommentHistoryStep
impl Send for CommentHistoryStep
impl Sync for CommentHistoryStep
impl Unpin for CommentHistoryStep
impl UnwindSafe for CommentHistoryStep
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