TraceRc

Struct TraceRc 

Source
pub struct TraceRc<Tr: TraceReader> {
    pub wrapper: Rc<RefCell<TraceBox<Tr>>>,
    /* private fields */
}
Expand description

A handle to a shared trace.

As long as the handle exists, the wrapped trace should continue to exist and will not advance its timestamps past the frontier maintained by the handle. The intent is that such a handle appears as if it is a privately maintained trace, despite being backed by shared resources.

Fields§

§wrapper: Rc<RefCell<TraceBox<Tr>>>

Wrapped trace. Please be gentle when using.

Implementations§

Source§

impl<Tr: TraceReader> TraceRc<Tr>

Source

pub fn make_from(trace: Tr) -> (Self, Rc<RefCell<TraceBox<Tr>>>)

Allocates a new handle from an existing wrapped wrapper.

Trait Implementations§

Source§

impl<Tr: TraceReader> Clone for TraceRc<Tr>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Tr: TraceReader> Drop for TraceRc<Tr>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<Tr: TraceReader> TraceReader for TraceRc<Tr>

Source§

fn set_logical_compaction(&mut self, frontier: AntichainRef<'_, Tr::Time>)

Sets frontier to now be elements in frontier.

This change may not have immediately observable effects. It informs the shared trace that this handle no longer requires access to times other than those in the future of frontier, but if there are other handles to the same trace, it may not yet be able to compact.

Source§

fn set_physical_compaction(&mut self, frontier: AntichainRef<'_, Tr::Time>)

Allows the trace to compact batches of times before frontier.

Source§

fn cursor_through( &mut self, frontier: AntichainRef<'_, Tr::Time>, ) -> Option<(Tr::Cursor, Tr::Storage)>

Creates a new cursor over the wrapped trace.

Source§

type Batch = <Tr as TraceReader>::Batch

The type of an immutable collection of updates.
Source§

type Storage = <Tr as TraceReader>::Storage

Storage type for Self::Cursor. Likely related to Self::Batch.
Source§

type Cursor = <Tr as TraceReader>::Cursor

The type used to enumerate the collections contents.
Source§

fn get_logical_compaction(&mut self) -> AntichainRef<'_, Tr::Time>

Reports the logical compaction frontier. Read more
Source§

fn get_physical_compaction(&mut self) -> AntichainRef<'_, Tr::Time>

Reports the physical compaction frontier. Read more
Source§

fn map_batches<F: FnMut(&Self::Batch)>(&self, f: F)

Maps logic across the non-empty sequence of batches in the trace. Read more
Source§

fn cursor(&mut self) -> (Self::Cursor, Self::Storage)

Provides a cursor over updates contained in the trace.
Source§

fn read_upper(&mut self, target: &mut Antichain<Self::Time>)

Reads the upper frontier of committed times.
Source§

fn advance_upper(&mut self, upper: &mut Antichain<Self::Time>)

Advances upper by any empty batches. Read more
Source§

impl<Tr: TraceReader> WithLayout for TraceRc<Tr>

Source§

type Layout = <Tr as WithLayout>::Layout

The layout.

Auto Trait Implementations§

§

impl<Tr> Freeze for TraceRc<Tr>
where <Tr as LayoutExt>::Time: Freeze,

§

impl<Tr> !RefUnwindSafe for TraceRc<Tr>

§

impl<Tr> !Send for TraceRc<Tr>

§

impl<Tr> !Sync for TraceRc<Tr>

§

impl<Tr> Unpin for TraceRc<Tr>
where <Tr as LayoutExt>::Time: Unpin,

§

impl<Tr> !UnwindSafe for TraceRc<Tr>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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<L> LayoutExt for L
where L: WithLayout,

Source§

type KeyOwn = <<<L as WithLayout>::Layout as Layout>::KeyContainer as BatchContainer>::Owned

Alias for an owned key of a layout.
Source§

type Key<'a> = <<<L as WithLayout>::Layout as Layout>::KeyContainer as BatchContainer>::ReadItem<'a>

Alias for an borrowed key of a layout.
Source§

type ValOwn = <<<L as WithLayout>::Layout as Layout>::ValContainer as BatchContainer>::Owned

Alias for an owned val of a layout.
Source§

type Val<'a> = <<<L as WithLayout>::Layout as Layout>::ValContainer as BatchContainer>::ReadItem<'a>

Alias for an borrowed val of a layout.
Source§

type Time = <<<L as WithLayout>::Layout as Layout>::TimeContainer as BatchContainer>::Owned

Alias for an owned time of a layout.
Source§

type TimeGat<'a> = <<<L as WithLayout>::Layout as Layout>::TimeContainer as BatchContainer>::ReadItem<'a>

Alias for an borrowed time of a layout.
Source§

type Diff = <<<L as WithLayout>::Layout as Layout>::DiffContainer as BatchContainer>::Owned

Alias for an owned diff of a layout.
Source§

type DiffGat<'a> = <<<L as WithLayout>::Layout as Layout>::DiffContainer as BatchContainer>::ReadItem<'a>

Alias for an borrowed diff of a layout.
Source§

type KeyContainer = <<L as WithLayout>::Layout as Layout>::KeyContainer

Container for update keys.
Source§

type ValContainer = <<L as WithLayout>::Layout as Layout>::ValContainer

Container for update vals.
Source§

type TimeContainer = <<L as WithLayout>::Layout as Layout>::TimeContainer

Container for times.
Source§

type DiffContainer = <<L as WithLayout>::Layout as Layout>::DiffContainer

Container for diffs.
Source§

fn owned_key(key: <L as LayoutExt>::Key<'_>) -> <L as LayoutExt>::KeyOwn

Construct an owned key from a reference.
Source§

fn owned_val(val: <L as LayoutExt>::Val<'_>) -> <L as LayoutExt>::ValOwn

Construct an owned val from a reference.
Source§

fn owned_time(time: <L as LayoutExt>::TimeGat<'_>) -> <L as LayoutExt>::Time

Construct an owned time from a reference.
Source§

fn owned_diff(diff: <L as LayoutExt>::DiffGat<'_>) -> <L as LayoutExt>::Diff

Construct an owned diff from a reference.
Source§

fn clone_time_onto( time: <L as LayoutExt>::TimeGat<'_>, onto: &mut <L as LayoutExt>::Time, )

Clones a reference time onto an owned time.
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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<T> Data for T
where T: Clone + 'static,