pub struct PatchFile {
pub description: String,
pub patches: Vec<ResourcePatch>,
}Expand description
A file of targeted edits to upstream resources.
Fields§
§description: StringWhy the upstream resources are being changed.
patches: Vec<ResourcePatch>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
Auto Trait Implementations§
impl Freeze for PatchFile
impl RefUnwindSafe for PatchFile
impl Send for PatchFile
impl Sync for PatchFile
impl Unpin for PatchFile
impl UnsafeUnpin 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