pub struct VersionPair {
pub from: VersionInfo,
pub to: VersionInfo,
}Expand description
Pair of version metadata records (from / to).
Fields§
§from: VersionInfofrom side of the diff.
to: VersionInfoto side of the diff.
Trait Implementations§
Source§impl Clone for VersionPair
impl Clone for VersionPair
Source§fn clone(&self) -> VersionPair
fn clone(&self) -> VersionPair
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VersionPair
impl Debug for VersionPair
Auto Trait Implementations§
impl Freeze for VersionPair
impl RefUnwindSafe for VersionPair
impl Send for VersionPair
impl Sync for VersionPair
impl Unpin for VersionPair
impl UnsafeUnpin for VersionPair
impl UnwindSafe for VersionPair
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