pub struct ResolvedPatches {
pub swap: BTreeMap<NodeHandle, NodeHandle>,
pub inject_side_effect: BTreeMap<NodeHandle, Vec<(NodeHandle, String, Box<[u8]>)>>,
}
Expand description
Fields§
§swap: BTreeMap<NodeHandle, NodeHandle>
§inject_side_effect: BTreeMap<NodeHandle, Vec<(NodeHandle, String, Box<[u8]>)>>
Implementations§
Source§impl ResolvedPatches
impl ResolvedPatches
pub fn build() -> PatchResolver
Trait Implementations§
Source§impl Clone for ResolvedPatches
impl Clone for ResolvedPatches
Source§fn clone(&self) -> ResolvedPatches
fn clone(&self) -> ResolvedPatches
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ResolvedPatches
impl RefUnwindSafe for ResolvedPatches
impl Send for ResolvedPatches
impl Sync for ResolvedPatches
impl Unpin for ResolvedPatches
impl UnwindSafe for ResolvedPatches
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