Struct feattle_core::persist::ValueHistory
source · [−]pub struct ValueHistory {
pub entries: Vec<HistoryEntry>,
}Expand description
Store the history of modification of a single feattle
Fields
entries: Vec<HistoryEntry>The entries are not necessarily stored in any specific order
Trait Implementations
sourceimpl Clone for ValueHistory
impl Clone for ValueHistory
sourcefn clone(&self) -> ValueHistory
fn clone(&self) -> ValueHistory
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ValueHistory
impl Debug for ValueHistory
sourceimpl Default for ValueHistory
impl Default for ValueHistory
sourcefn default() -> ValueHistory
fn default() -> ValueHistory
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ValueHistory
impl<'de> Deserialize<'de> for ValueHistory
sourcefn 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
sourceimpl PartialEq<ValueHistory> for ValueHistory
impl PartialEq<ValueHistory> for ValueHistory
sourcefn eq(&self, other: &ValueHistory) -> bool
fn eq(&self, other: &ValueHistory) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ValueHistory) -> bool
fn ne(&self, other: &ValueHistory) -> bool
This method tests for !=.
sourceimpl Serialize for ValueHistory
impl Serialize for ValueHistory
impl Eq for ValueHistory
impl StructuralEq for ValueHistory
impl StructuralPartialEq for ValueHistory
Auto Trait Implementations
impl RefUnwindSafe for ValueHistory
impl Send for ValueHistory
impl Sync for ValueHistory
impl Unpin for ValueHistory
impl UnwindSafe for ValueHistory
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more