pub struct MutationRecord {
pub plugin: String,
pub target: Target,
pub path: String,
pub operation: Operation,
pub sequence_index: u64,
}Fields§
§plugin: StringPlugin::name() of the plugin that requested the mutation.
target: Target§path: StringDotted path to the field that was mutated, e.g.
"info_plist.CFBundleIdentifier" or
"manifest.permissions".
operation: Operation§sequence_index: u64Monotonically-increasing per-pipeline counter. Plugins that run earlier have smaller values.
Trait Implementations§
Source§impl Clone for MutationRecord
impl Clone for MutationRecord
Source§fn clone(&self) -> MutationRecord
fn clone(&self) -> MutationRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MutationRecord
impl Debug for MutationRecord
Source§impl<'de> Deserialize<'de> for MutationRecord
impl<'de> Deserialize<'de> for MutationRecord
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 MutationRecord
impl PartialEq for MutationRecord
Source§fn eq(&self, other: &MutationRecord) -> bool
fn eq(&self, other: &MutationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MutationRecord
impl Serialize for MutationRecord
impl StructuralPartialEq for MutationRecord
Auto Trait Implementations§
impl Freeze for MutationRecord
impl RefUnwindSafe for MutationRecord
impl Send for MutationRecord
impl Sync for MutationRecord
impl Unpin for MutationRecord
impl UnsafeUnpin for MutationRecord
impl UnwindSafe for MutationRecord
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