pub struct ChangesetOperationsChangedAction {
pub operations: Option<Vec<ChangesetOperation>>,
}Expand description
The set of operations available on this changeset changed. Full
replacement semantics: operations replaces the previous list (or
removes it entirely when operations is undefined).
Fields§
§operations: Option<Vec<ChangesetOperation>>Updated operation list. Pass undefined to clear all operations.
Trait Implementations§
Source§impl Clone for ChangesetOperationsChangedAction
impl Clone for ChangesetOperationsChangedAction
Source§fn clone(&self) -> ChangesetOperationsChangedAction
fn clone(&self) -> ChangesetOperationsChangedAction
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 Default for ChangesetOperationsChangedAction
impl Default for ChangesetOperationsChangedAction
Source§fn default() -> ChangesetOperationsChangedAction
fn default() -> ChangesetOperationsChangedAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangesetOperationsChangedAction
impl<'de> Deserialize<'de> for ChangesetOperationsChangedAction
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 ChangesetOperationsChangedAction
impl PartialEq for ChangesetOperationsChangedAction
Source§fn eq(&self, other: &ChangesetOperationsChangedAction) -> bool
fn eq(&self, other: &ChangesetOperationsChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChangesetOperationsChangedAction
Auto Trait Implementations§
impl Freeze for ChangesetOperationsChangedAction
impl RefUnwindSafe for ChangesetOperationsChangedAction
impl Send for ChangesetOperationsChangedAction
impl Sync for ChangesetOperationsChangedAction
impl Unpin for ChangesetOperationsChangedAction
impl UnsafeUnpin for ChangesetOperationsChangedAction
impl UnwindSafe for ChangesetOperationsChangedAction
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