pub struct TrackingHashScope<'a> {
pub partition: RoutingPartitionRef<'a>,
pub block_size: u32,
}Expand description
Stable, trusted scope shared by router instances that should produce the same derived tracking identities.
TODO(#11971): Evaluate deriving the static tracking-domain identity from
IndexerDomainId. PoolId and DcId represent placement and must remain
excluded from tracking identity.
Fields§
§partition: RoutingPartitionRef<'a>§block_size: u32Trait Implementations§
Source§impl<'a> Clone for TrackingHashScope<'a>
impl<'a> Clone for TrackingHashScope<'a>
Source§fn clone(&self) -> TrackingHashScope<'a>
fn clone(&self) -> TrackingHashScope<'a>
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 moreimpl<'a> Copy for TrackingHashScope<'a>
Auto Trait Implementations§
impl<'a> Freeze for TrackingHashScope<'a>
impl<'a> RefUnwindSafe for TrackingHashScope<'a>
impl<'a> Send for TrackingHashScope<'a>
impl<'a> Sync for TrackingHashScope<'a>
impl<'a> Unpin for TrackingHashScope<'a>
impl<'a> UnsafeUnpin for TrackingHashScope<'a>
impl<'a> UnwindSafe for TrackingHashScope<'a>
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