pub enum ReloadRouting {
NewSpanToLatestLayer,
NewSpanToParentLayer,
}Expand description
Determines how new spans are routed when layers are reloaded.
Variants§
NewSpanToLatestLayer
Route new spans to the most recently reloaded layer.
NewSpanToParentLayer
Route new spans to the same layer that handled their parent span.
Trait Implementations§
Source§impl Clone for ReloadRouting
impl Clone for ReloadRouting
Source§fn clone(&self) -> ReloadRouting
fn clone(&self) -> ReloadRouting
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 Copy for ReloadRouting
Auto Trait Implementations§
impl Freeze for ReloadRouting
impl RefUnwindSafe for ReloadRouting
impl Send for ReloadRouting
impl Sync for ReloadRouting
impl Unpin for ReloadRouting
impl UnsafeUnpin for ReloadRouting
impl UnwindSafe for ReloadRouting
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