Struct krecik::products::history::History[][src]

pub struct History(_);

History is list of Stories

Implementations

impl History[src]

pub fn empty() -> History[src]

New empty history

pub fn new(first: Story) -> History[src]

New History with first element

pub fn new_from(stories: Stories) -> History[src]

New History with stories list

pub fn stories(&self) -> Stories[src]

Stories extractor

pub fn head(&self) -> Story[src]

Head of the History - first element added

pub fn length(&self) -> usize[src]

History length

pub fn append(&self, story: Story) -> History[src]

Append Story to History

pub fn merge(&self, a_history: History) -> History[src]

Merge History with another History

Trait Implementations

impl Clone for History[src]

impl Debug for History[src]

impl<'de> Deserialize<'de> for History[src]

impl PartialEq<History> for History[src]

impl Serialize for History[src]

impl StructuralPartialEq for History[src]

impl ToString for History[src]

Implement JSON serialization on .to_string():

Auto Trait Implementations

impl RefUnwindSafe for History

impl Send for History

impl Sync for History

impl Unpin for History

impl UnwindSafe for History

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Err = <U as TryFrom<T>>::Err

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,