pub struct ActorQuery<'a> { /* private fields */ }Expand description
Query handle for an Actor node in the chronicle graph.
Provides methods to inspect the actor’s data, events, interactions, and computed status at a point in time.
Implementations§
Source§impl<'a> ActorQuery<'a>
impl<'a> ActorQuery<'a>
Sourcepub fn events_during(&self, range: RangeInclusive<i32>) -> Vec<&'a Event>
pub fn events_during(&self, range: RangeInclusive<i32>) -> Vec<&'a Event>
Events filtered by time range.
Sourcepub fn interactions(&self) -> InteractionResult<'a>
pub fn interactions(&self) -> InteractionResult<'a>
All other actors this actor has co-participated in events with.
Auto Trait Implementations§
impl<'a> Freeze for ActorQuery<'a>
impl<'a> RefUnwindSafe for ActorQuery<'a>
impl<'a> Send for ActorQuery<'a>
impl<'a> Sync for ActorQuery<'a>
impl<'a> Unpin for ActorQuery<'a>
impl<'a> UnsafeUnpin for ActorQuery<'a>
impl<'a> UnwindSafe for ActorQuery<'a>
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