pub struct ClassifyInfo {
pub endpoint: EndpointKind,
pub logical_index: IndexName,
}Expand description
The classify span: how the request path was categorized.
Fields§
§endpoint: EndpointKindThe endpoint classification.
logical_index: IndexNameThe logical index from the path (a name, never a value).
Trait Implementations§
Source§impl Clone for ClassifyInfo
impl Clone for ClassifyInfo
Source§fn clone(&self) -> ClassifyInfo
fn clone(&self) -> ClassifyInfo
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 ClassifyInfo
impl Debug for ClassifyInfo
impl Eq for ClassifyInfo
Source§impl PartialEq for ClassifyInfo
impl PartialEq for ClassifyInfo
Source§fn eq(&self, other: &ClassifyInfo) -> bool
fn eq(&self, other: &ClassifyInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClassifyInfo
Auto Trait Implementations§
impl Freeze for ClassifyInfo
impl RefUnwindSafe for ClassifyInfo
impl Send for ClassifyInfo
impl Sync for ClassifyInfo
impl Unpin for ClassifyInfo
impl UnsafeUnpin for ClassifyInfo
impl UnwindSafe for ClassifyInfo
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