Skip to main content

DiscoverScratch

Struct DiscoverScratch 

Source
pub struct DiscoverScratch<T, RIn> { /* private fields */ }
Expand description

Reusable per-key scratch for discover_times: held once and threaded through every key, so replays and time buffers are cleared and refilled rather than reallocated per key.

Implementations§

Source§

impl<T: Timestamp + Lattice, RIn: Semigroup + Clone> DiscoverScratch<T, RIn>

Source

pub fn new() -> Self

Fresh scratch; hold one per retire and thread it through every key.

Trait Implementations§

Source§

impl<T: Timestamp + Lattice, RIn: Semigroup + Clone> Default for DiscoverScratch<T, RIn>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T, RIn> Freeze for DiscoverScratch<T, RIn>

§

impl<T, RIn> RefUnwindSafe for DiscoverScratch<T, RIn>

§

impl<T, RIn> Send for DiscoverScratch<T, RIn>
where T: Send, RIn: Send,

§

impl<T, RIn> Sync for DiscoverScratch<T, RIn>
where T: Sync, RIn: Sync,

§

impl<T, RIn> Unpin for DiscoverScratch<T, RIn>
where T: Unpin, RIn: Unpin,

§

impl<T, RIn> UnsafeUnpin for DiscoverScratch<T, RIn>

§

impl<T, RIn> UnwindSafe for DiscoverScratch<T, RIn>
where T: UnwindSafe, RIn: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

Source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.