pub struct ScoreComponentResponse {
pub name: String,
pub value: u32,
pub contribution: i32,
pub reason: String,
}Fields§
§name: String§value: u32§contribution: i32§reason: StringTrait Implementations§
Source§impl Clone for ScoreComponentResponse
impl Clone for ScoreComponentResponse
Source§fn clone(&self) -> ScoreComponentResponse
fn clone(&self) -> ScoreComponentResponse
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 ScoreComponentResponse
impl Debug for ScoreComponentResponse
Source§impl<'de> Deserialize<'de> for ScoreComponentResponse
impl<'de> Deserialize<'de> for ScoreComponentResponse
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
impl Eq for ScoreComponentResponse
Source§impl PartialEq for ScoreComponentResponse
impl PartialEq for ScoreComponentResponse
Source§fn eq(&self, other: &ScoreComponentResponse) -> bool
fn eq(&self, other: &ScoreComponentResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScoreComponentResponse
impl Serialize for ScoreComponentResponse
impl StructuralPartialEq for ScoreComponentResponse
Auto Trait Implementations§
impl Freeze for ScoreComponentResponse
impl RefUnwindSafe for ScoreComponentResponse
impl Send for ScoreComponentResponse
impl Sync for ScoreComponentResponse
impl Unpin for ScoreComponentResponse
impl UnsafeUnpin for ScoreComponentResponse
impl UnwindSafe for ScoreComponentResponse
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