pub struct DataTranche {
pub tranchen_id: String,
pub proportion: ProportionType,
pub percent: Option<f64>,
pub data_tranche_suppliers: Vec<TimeSlicedMarketPartner>,
}Expand description
A billing tranche at a market location.
Fields§
§tranchen_id: String§proportion: ProportionType§percent: Option<f64>§data_tranche_suppliers: Vec<TimeSlicedMarketPartner>Trait Implementations§
Source§impl Clone for DataTranche
impl Clone for DataTranche
Source§fn clone(&self) -> DataTranche
fn clone(&self) -> DataTranche
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 DataTranche
impl Debug for DataTranche
Source§impl<'de> Deserialize<'de> for DataTranche
impl<'de> Deserialize<'de> for DataTranche
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 DataTranche
impl PartialEq for DataTranche
Source§fn eq(&self, other: &DataTranche) -> bool
fn eq(&self, other: &DataTranche) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataTranche
impl Serialize for DataTranche
impl StructuralPartialEq for DataTranche
Auto Trait Implementations§
impl Freeze for DataTranche
impl RefUnwindSafe for DataTranche
impl Send for DataTranche
impl Sync for DataTranche
impl Unpin for DataTranche
impl UnsafeUnpin for DataTranche
impl UnwindSafe for DataTranche
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