pub struct QueryEventsResponse {
pub events: Vec<EventDto>,
pub count: usize,
pub total_count: usize,
pub has_more: bool,
pub entity_version: Option<u64>,
}Expand description
DTO for query response
Fields§
§events: Vec<EventDto>§count: usize§total_count: usize§has_more: bool§entity_version: Option<u64>Current version of the entity (present only when query filters by entity_id)
Trait Implementations§
Source§impl Debug for QueryEventsResponse
impl Debug for QueryEventsResponse
Auto Trait Implementations§
impl Freeze for QueryEventsResponse
impl RefUnwindSafe for QueryEventsResponse
impl Send for QueryEventsResponse
impl Sync for QueryEventsResponse
impl Unpin for QueryEventsResponse
impl UnsafeUnpin for QueryEventsResponse
impl UnwindSafe for QueryEventsResponse
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