Trait orml_oracle::CombineData[][src]

pub trait CombineData<Key, TimestampedValue> {
    pub fn combine_data(
        key: &Key,
        values: Vec<TimestampedValue, Global>,
        prev_value: Option<TimestampedValue>
    ) -> Option<TimestampedValue>; }

Combine data provided by operators

Required methods

pub fn combine_data(
    key: &Key,
    values: Vec<TimestampedValue, Global>,
    prev_value: Option<TimestampedValue>
) -> Option<TimestampedValue>
[src]

Combine data provided by operators

Loading content...

Implementors

impl<T, I, MinimumCount, ExpiresIn> CombineData<<T as Config<I>>::OracleKey, TimestampedValue<<T as Config<I>>::OracleValue, <<T as Config<I>>::Time as Time>::Moment>> for DefaultCombineData<T, MinimumCount, ExpiresIn, I> where
    T: Config<I>,
    I: 'static,
    MinimumCount: Get<u32>,
    ExpiresIn: Get<<<T as Config<I>>::Time as Time>::Moment>, 
[src]

Loading content...