pub struct AutoRoutingEvent {
pub provider: String,
pub decision: AutoRouteDecision,
pub materialization_bytes: u64,
pub synchronizations: usize,
}Expand description
One provider-selection ledger row.
Fields§
§provider: StringProvider label chosen for the request or flush.
decision: AutoRouteDecisionRouting decision.
materialization_bytes: u64Estimated materialization bytes.
synchronizations: usizeSynchronization count represented by the event.
Trait Implementations§
Source§impl Clone for AutoRoutingEvent
impl Clone for AutoRoutingEvent
Source§fn clone(&self) -> AutoRoutingEvent
fn clone(&self) -> AutoRoutingEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoRoutingEvent
impl Debug for AutoRoutingEvent
impl Eq for AutoRoutingEvent
Source§impl PartialEq for AutoRoutingEvent
impl PartialEq for AutoRoutingEvent
impl StructuralPartialEq for AutoRoutingEvent
Auto Trait Implementations§
impl Freeze for AutoRoutingEvent
impl RefUnwindSafe for AutoRoutingEvent
impl Send for AutoRoutingEvent
impl Sync for AutoRoutingEvent
impl Unpin for AutoRoutingEvent
impl UnsafeUnpin for AutoRoutingEvent
impl UnwindSafe for AutoRoutingEvent
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