pub struct PerformanceCpsData { /* private fields */ }
Implementations§
Source§impl PerformanceCpsData
impl PerformanceCpsData
pub fn new() -> PerformanceCpsData
pub fn set_base_currency(&mut self, base_currency: String)
pub fn with_base_currency(self, base_currency: String) -> PerformanceCpsData
pub fn base_currency(&self) -> Option<&String>
pub fn reset_base_currency(&mut self)
pub fn set_end(&mut self, end: String)
pub fn with_end(self, end: String) -> PerformanceCpsData
pub fn end(&self) -> Option<&String>
pub fn reset_end(&mut self)
pub fn set_id(&mut self, id: String)
pub fn with_id(self, id: String) -> PerformanceCpsData
pub fn id(&self) -> Option<&String>
pub fn reset_id(&mut self)
pub fn set_id_type(&mut self, id_type: String)
pub fn with_id_type(self, id_type: String) -> PerformanceCpsData
pub fn id_type(&self) -> Option<&String>
pub fn reset_id_type(&mut self)
pub fn set_returns(&mut self, returns: Vec<f32>)
pub fn with_returns(self, returns: Vec<f32>) -> PerformanceCpsData
pub fn returns(&self) -> Option<&Vec<f32>>
pub fn reset_returns(&mut self)
pub fn set_start(&mut self, start: String)
pub fn with_start(self, start: String) -> PerformanceCpsData
pub fn start(&self) -> Option<&String>
pub fn reset_start(&mut self)
Trait Implementations§
Source§impl Debug for PerformanceCpsData
impl Debug for PerformanceCpsData
Source§impl<'de> Deserialize<'de> for PerformanceCpsData
impl<'de> Deserialize<'de> for PerformanceCpsData
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 PerformanceCpsData
impl RefUnwindSafe for PerformanceCpsData
impl Send for PerformanceCpsData
impl Sync for PerformanceCpsData
impl Unpin for PerformanceCpsData
impl UnwindSafe for PerformanceCpsData
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