pub struct Performance {
pub id: Option<String>,
pub cps: Option<PerformanceCps>,
pub tpps: Option<PerformanceTpps>,
pub nav: Option<PerformanceNav>,
pub pm: Option<String>,
pub included: Option<Vec<String>>,
pub currency_type: Option<String>,
pub rc: Option<i32>,
}
Fields§
§id: Option<String>
§cps: Option<PerformanceCps>
§tpps: Option<PerformanceTpps>
§pm: Option<String>
§included: Option<Vec<String>>
§currency_type: Option<String>
§rc: Option<i32>
Implementations§
Source§impl Performance
impl Performance
pub fn new() -> Performance
Trait Implementations§
Source§impl Clone for Performance
impl Clone for Performance
Source§fn clone(&self) -> Performance
fn clone(&self) -> Performance
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 Performance
impl Debug for Performance
Source§impl<'de> Deserialize<'de> for Performance
impl<'de> Deserialize<'de> for Performance
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
Source§impl PartialEq for Performance
impl PartialEq for Performance
Source§impl Serialize for Performance
impl Serialize for Performance
impl StructuralPartialEq for Performance
Auto Trait Implementations§
impl Freeze for Performance
impl RefUnwindSafe for Performance
impl Send for Performance
impl Sync for Performance
impl Unpin for Performance
impl UnwindSafe for Performance
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