pub enum ArrayDeltaIndex {
NewOrModified(usize),
RemovedOrMoved(usize),
}Variants§
Implementations§
Source§impl ArrayDeltaIndex
impl ArrayDeltaIndex
pub fn to_serializable(&self) -> String
Trait Implementations§
Source§impl Clone for ArrayDeltaIndex
impl Clone for ArrayDeltaIndex
Source§fn clone(&self) -> ArrayDeltaIndex
fn clone(&self) -> ArrayDeltaIndex
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 ArrayDeltaIndex
impl Debug for ArrayDeltaIndex
impl Eq for ArrayDeltaIndex
Source§impl Ord for ArrayDeltaIndex
impl Ord for ArrayDeltaIndex
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ArrayDeltaIndex
impl PartialEq for ArrayDeltaIndex
Source§impl PartialOrd for ArrayDeltaIndex
impl PartialOrd for ArrayDeltaIndex
Auto Trait Implementations§
impl Freeze for ArrayDeltaIndex
impl RefUnwindSafe for ArrayDeltaIndex
impl Send for ArrayDeltaIndex
impl Sync for ArrayDeltaIndex
impl Unpin for ArrayDeltaIndex
impl UnsafeUnpin for ArrayDeltaIndex
impl UnwindSafe for ArrayDeltaIndex
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