pub struct CeremonyAgentActivityQuery { /* private fields */ }Expand description
Global-cursor query with optional filters that never renumber the feed.
Implementations§
Source§impl CeremonyAgentActivityQuery
impl CeremonyAgentActivityQuery
pub fn new( ceremony_id: CeremonyId, after_sequence: u64, limit: usize, role_id: Option<RoleId>, step_id: Option<StepId>, agent_execution_id: Option<CeremonyAgentExecutionId>, ) -> Result<Self, DomainError>
pub const fn ceremony_id(&self) -> &CeremonyId
pub const fn after_sequence(&self) -> u64
pub const fn limit(&self) -> usize
pub const fn role_id(&self) -> Option<&RoleId>
pub const fn step_id(&self) -> Option<&StepId>
pub const fn agent_execution_id(&self) -> Option<&CeremonyAgentExecutionId>
Trait Implementations§
Source§impl Clone for CeremonyAgentActivityQuery
impl Clone for CeremonyAgentActivityQuery
Source§impl Debug for CeremonyAgentActivityQuery
impl Debug for CeremonyAgentActivityQuery
impl Eq for CeremonyAgentActivityQuery
impl StructuralPartialEq for CeremonyAgentActivityQuery
Auto Trait Implementations§
impl Freeze for CeremonyAgentActivityQuery
impl RefUnwindSafe for CeremonyAgentActivityQuery
impl Send for CeremonyAgentActivityQuery
impl Sync for CeremonyAgentActivityQuery
impl Unpin for CeremonyAgentActivityQuery
impl UnsafeUnpin for CeremonyAgentActivityQuery
impl UnwindSafe for CeremonyAgentActivityQuery
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