deltoid 0.3.0

A library to calculate and apply deltas to structs and enums
Documentation
//!

use crate::{DeltaError, Deltoid, DeltaResult};
use crate::convert::{FromDelta, IntoDelta};

impl Deltoid for String { // TODO: Improve space efficiency
    type Delta = StringDelta;

    fn apply_delta(&self, delta: &Self::Delta) -> DeltaResult<Self> {
        Self::from_delta(delta.clone())
    }

    fn delta(&self, rhs: &Self) -> DeltaResult<Self::Delta> {
        rhs.clone().into_delta()
    }
}

#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[derive(serde_derive::Deserialize, serde_derive::Serialize)]
pub struct StringDelta(Option<String>);

impl IntoDelta for String {
    fn into_delta(self) -> DeltaResult<<Self as Deltoid>::Delta> {
        Ok(StringDelta(Some(self)))
    }
}

impl FromDelta for String {
    fn from_delta(delta: <Self as Deltoid>::Delta) -> DeltaResult<Self> {
        delta.0.ok_or(DeltaError::ExpectedValue)
    }
}