pub struct BinaryChanges {
pub different_bytes: u64,
pub same_bytes: u64,
pub change_patterns: Vec<ChangePattern>,
}Expand description
二进制文件变化详情
Fields§
§different_bytes: u64不同字节数
same_bytes: u64相同字节数
change_patterns: Vec<ChangePattern>变化模式(连续变化区域等)
Trait Implementations§
Source§impl Clone for BinaryChanges
impl Clone for BinaryChanges
Source§fn clone(&self) -> BinaryChanges
fn clone(&self) -> BinaryChanges
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 BinaryChanges
impl Debug for BinaryChanges
Source§impl<'de> Deserialize<'de> for BinaryChanges
impl<'de> Deserialize<'de> for BinaryChanges
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
Auto Trait Implementations§
impl Freeze for BinaryChanges
impl RefUnwindSafe for BinaryChanges
impl Send for BinaryChanges
impl Sync for BinaryChanges
impl Unpin for BinaryChanges
impl UnwindSafe for BinaryChanges
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