pub struct EndpointScore {
pub endpoint_id: String,
pub pool_id: String,
pub score: f64,
pub tier: ScoreTier,
pub observation_count: usize,
pub breakdown: ScoreBreakdown,
pub excluded: bool,
pub exclusion_reason: Option<String>,
}Fields§
§endpoint_id: String§pool_id: String§score: f64§tier: ScoreTier§observation_count: usize§breakdown: ScoreBreakdown§excluded: bool§exclusion_reason: Option<String>Trait Implementations§
Source§impl Clone for EndpointScore
impl Clone for EndpointScore
Source§fn clone(&self) -> EndpointScore
fn clone(&self) -> EndpointScore
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 moreSource§impl Debug for EndpointScore
impl Debug for EndpointScore
Source§impl<'de> Deserialize<'de> for EndpointScore
impl<'de> Deserialize<'de> for EndpointScore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EndpointScore
impl RefUnwindSafe for EndpointScore
impl Send for EndpointScore
impl Sync for EndpointScore
impl Unpin for EndpointScore
impl UnsafeUnpin for EndpointScore
impl UnwindSafe for EndpointScore
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