Skip to main content

SnapshotRaw

Trait SnapshotRaw 

Source
pub trait SnapshotRaw {
    type Item;

    // Required method
    unsafe fn snapshot_raw(&self) -> Vec<Self::Item>;
}

Required Associated Types§

Required Methods§

Source

unsafe fn snapshot_raw(&self) -> Vec<Self::Item>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: Copy, Impl: SnapshotRaw<Item = T>> SnapshotRaw for RingBuffer<Impl>

Source§

type Item = T

Source§

impl<T: Copy> SnapshotRaw for RingStorageNaive<T>

Source§

type Item = T

Source§

impl<T: Copy> SnapshotRaw for Timeseries<T>

Source§

type Item = T