pub struct Move {
pub added_parents: Option<Vec<Parent>>,
pub removed_parents: Option<Vec<Parent>>,
}Expand description
Contains information about changes in an object’s parents as a result of a move type event.
This type is not used in any activity, and only used as part of another schema.
Fields§
§added_parents: Option<Vec<Parent>>The added parent(s).
removed_parents: Option<Vec<Parent>>The removed parent(s).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Move
impl<'de> Deserialize<'de> for Move
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 Part for Move
Auto Trait Implementations§
impl Freeze for Move
impl RefUnwindSafe for Move
impl Send for Move
impl Sync for Move
impl Unpin for Move
impl UnwindSafe for Move
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