pub struct CeremonyAgentStatusQuery { /* private fields */ }Expand description
Bounded, filtered keyset query over one ceremony’s live agent roster.
Implementations§
Source§impl CeremonyAgentStatusQuery
impl CeremonyAgentStatusQuery
pub fn new( ceremony_id: impl Into<String>, cursor: Option<String>, limit: usize, execution_status: Option<AgentExecutionStatus>, ) -> Result<Self, DomainError>
pub fn ceremony_id(&self) -> &str
pub fn cursor(&self) -> Option<&str>
pub fn limit(&self) -> usize
pub fn execution_status(&self) -> Option<AgentExecutionStatus>
Trait Implementations§
Source§impl Clone for CeremonyAgentStatusQuery
impl Clone for CeremonyAgentStatusQuery
Source§impl Debug for CeremonyAgentStatusQuery
impl Debug for CeremonyAgentStatusQuery
impl Eq for CeremonyAgentStatusQuery
Source§impl PartialEq for CeremonyAgentStatusQuery
impl PartialEq for CeremonyAgentStatusQuery
impl StructuralPartialEq for CeremonyAgentStatusQuery
Auto Trait Implementations§
impl Freeze for CeremonyAgentStatusQuery
impl RefUnwindSafe for CeremonyAgentStatusQuery
impl Send for CeremonyAgentStatusQuery
impl Sync for CeremonyAgentStatusQuery
impl Unpin for CeremonyAgentStatusQuery
impl UnsafeUnpin for CeremonyAgentStatusQuery
impl UnwindSafe for CeremonyAgentStatusQuery
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