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