pub struct OutputFrame<O> {
pub output_key: OutputKey,
pub scope: ScopeId,
pub transaction_id: TransactionId,
pub revision: Revision,
pub kind: OutputFrameKind<O>,
}Expand description
Data-only materialized output frame returned from a transaction.
Fields§
§output_key: OutputKeyOutput key this frame targets.
scope: ScopeIdScope that owns this output.
transaction_id: TransactionIdTransaction that emitted this frame.
revision: RevisionGraph revision this frame belongs to.
kind: OutputFrameKind<O>Frame payload.
Trait Implementations§
Source§impl<O: Clone> Clone for OutputFrame<O>
impl<O: Clone> Clone for OutputFrame<O>
Source§fn clone(&self) -> OutputFrame<O>
fn clone(&self) -> OutputFrame<O>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<O: Debug> Debug for OutputFrame<O>
impl<O: Debug> Debug for OutputFrame<O>
impl<O: Eq> Eq for OutputFrame<O>
Source§impl<O: PartialEq> PartialEq for OutputFrame<O>
impl<O: PartialEq> PartialEq for OutputFrame<O>
Source§fn eq(&self, other: &OutputFrame<O>) -> bool
fn eq(&self, other: &OutputFrame<O>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<O: PartialEq> StructuralPartialEq for OutputFrame<O>
Auto Trait Implementations§
impl<O> Freeze for OutputFrame<O>where
O: Freeze,
impl<O> RefUnwindSafe for OutputFrame<O>where
O: RefUnwindSafe,
impl<O> Send for OutputFrame<O>where
O: Send,
impl<O> Sync for OutputFrame<O>where
O: Sync,
impl<O> Unpin for OutputFrame<O>where
O: Unpin,
impl<O> UnsafeUnpin for OutputFrame<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for OutputFrame<O>where
O: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more