pub struct PatchFileInfo {
pub before_hash: String,
pub after_hash: String,
}Expand description
Hash information for a single patched file.
Fields§
§before_hash: String§after_hash: StringTrait Implementations§
Source§impl Clone for PatchFileInfo
impl Clone for PatchFileInfo
Source§fn clone(&self) -> PatchFileInfo
fn clone(&self) -> PatchFileInfo
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 moreSource§impl Debug for PatchFileInfo
impl Debug for PatchFileInfo
Source§impl<'de> Deserialize<'de> for PatchFileInfo
impl<'de> Deserialize<'de> for PatchFileInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PatchFileInfo
impl PartialEq for PatchFileInfo
Source§impl Serialize for PatchFileInfo
impl Serialize for PatchFileInfo
impl StructuralPartialEq for PatchFileInfo
Auto Trait Implementations§
impl Freeze for PatchFileInfo
impl RefUnwindSafe for PatchFileInfo
impl Send for PatchFileInfo
impl Sync for PatchFileInfo
impl Unpin for PatchFileInfo
impl UnsafeUnpin for PatchFileInfo
impl UnwindSafe for PatchFileInfo
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