pub struct BenchmarkMetadata {
pub average: Option<String>,
}Expand description
BenchmarkMetadata : This complex type defines the fields that comprise the benchmark against which the seller’s performance is compared. The comparison determines the seller’s rating for the metric.
Fields§
§average: Option<String>This field returns the average value for the group, as defined by the specified basis.
When the benchmark basis is set to PEER_BENCHMARK, the value returned in this field is the benchmark value to which the seller’s metric value is compared to determine the seller’s rating for the customer service metric.
Implementations§
Source§impl BenchmarkMetadata
impl BenchmarkMetadata
Sourcepub fn new() -> BenchmarkMetadata
pub fn new() -> BenchmarkMetadata
This complex type defines the fields that comprise the benchmark against which the seller’s performance is compared. The comparison determines the seller’s rating for the metric.
Trait Implementations§
Source§impl Clone for BenchmarkMetadata
impl Clone for BenchmarkMetadata
Source§fn clone(&self) -> BenchmarkMetadata
fn clone(&self) -> BenchmarkMetadata
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 BenchmarkMetadata
impl Debug for BenchmarkMetadata
Source§impl Default for BenchmarkMetadata
impl Default for BenchmarkMetadata
Source§fn default() -> BenchmarkMetadata
fn default() -> BenchmarkMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BenchmarkMetadata
impl<'de> Deserialize<'de> for BenchmarkMetadata
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BenchmarkMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BenchmarkMetadata, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BenchmarkMetadata
impl PartialEq for BenchmarkMetadata
Source§impl Serialize for BenchmarkMetadata
impl Serialize for BenchmarkMetadata
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for BenchmarkMetadata
Auto Trait Implementations§
impl Freeze for BenchmarkMetadata
impl RefUnwindSafe for BenchmarkMetadata
impl Send for BenchmarkMetadata
impl Sync for BenchmarkMetadata
impl Unpin for BenchmarkMetadata
impl UnsafeUnpin for BenchmarkMetadata
impl UnwindSafe for BenchmarkMetadata
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