pub struct PatchFile {
pub patches: Vec<Patch>,
}
Expand description
Patch file structure,
Each *.patch
file may contain several individual patches.
Fields§
§patches: Vec<Patch>
List of individual patches.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PatchFile
impl<'de> Deserialize<'de> for PatchFile
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
impl StructuralPartialEq for PatchFile
Auto Trait Implementations§
impl Freeze for PatchFile
impl RefUnwindSafe for PatchFile
impl Send for PatchFile
impl Sync for PatchFile
impl Unpin for PatchFile
impl UnwindSafe for PatchFile
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