pub struct RelationUpdate {
pub key: String,
pub kind: RelationOpKind,
pub related_ids: Vec<String>,
}Expand description
One pending membership change, stripped out of a write body.
Fields§
§key: String§kind: RelationOpKindThe objectIds of the related objects, in the order the client sent them.
Trait Implementations§
Source§impl Clone for RelationUpdate
impl Clone for RelationUpdate
Source§fn clone(&self) -> RelationUpdate
fn clone(&self) -> RelationUpdate
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 moreAuto Trait Implementations§
impl Freeze for RelationUpdate
impl RefUnwindSafe for RelationUpdate
impl Send for RelationUpdate
impl Sync for RelationUpdate
impl Unpin for RelationUpdate
impl UnsafeUnpin for RelationUpdate
impl UnwindSafe for RelationUpdate
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