pub struct ListDelta {
pub added: Vec<String>,
pub removed: Vec<String>,
}Expand description
Membership delta for one list-valued global.
Fields§
§added: Vec<String>Item names present in b but not a, sorted.
removed: Vec<String>Item names present in a but not b, sorted.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListDelta
impl<'de> Deserialize<'de> for ListDelta
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 Eq for ListDelta
impl StructuralPartialEq for ListDelta
Auto Trait Implementations§
impl Freeze for ListDelta
impl RefUnwindSafe for ListDelta
impl Send for ListDelta
impl Sync for ListDelta
impl Unpin for ListDelta
impl UnsafeUnpin for ListDelta
impl UnwindSafe for ListDelta
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