pub struct AggregateDescriptor {
pub aggregate_id: InputId,
pub source_ids: Vec<InputId>,
pub summary: String,
pub created_at: DateTime<Utc>,
}Expand description
Describes a coalesced aggregate (the caller creates the actual Input).
Fields§
§aggregate_id: InputId§source_ids: Vec<InputId>§summary: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AggregateDescriptor
impl Clone for AggregateDescriptor
Source§fn clone(&self) -> AggregateDescriptor
fn clone(&self) -> AggregateDescriptor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AggregateDescriptor
impl RefUnwindSafe for AggregateDescriptor
impl Send for AggregateDescriptor
impl Sync for AggregateDescriptor
impl Unpin for AggregateDescriptor
impl UnsafeUnpin for AggregateDescriptor
impl UnwindSafe for AggregateDescriptor
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