pub struct CloudEnginePricesReport {
pub context: CloudEngineReportContext,
pub network_fee: f64,
pub price_count: usize,
pub prices: Vec<CloudEnginePriceRow>,
}Expand description
CloudEnginePricesReport
Bounded public CloudEngine marketplace fee and price report.
Fields§
§context: CloudEngineReportContextQuery and authority provenance.
network_fee: f64Network-fee fraction added to provider net prices.
price_count: usizeNumber of returned marketplace rows.
prices: Vec<CloudEnginePriceRow>Canonically ordered marketplace prices.
Trait Implementations§
Source§impl Clone for CloudEnginePricesReport
impl Clone for CloudEnginePricesReport
Source§fn clone(&self) -> CloudEnginePricesReport
fn clone(&self) -> CloudEnginePricesReport
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 CloudEnginePricesReport
impl Debug for CloudEnginePricesReport
Source§impl<'de> Deserialize<'de> for CloudEnginePricesReport
impl<'de> Deserialize<'de> for CloudEnginePricesReport
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 CloudEnginePricesReport
impl PartialEq for CloudEnginePricesReport
Source§impl Serialize for CloudEnginePricesReport
impl Serialize for CloudEnginePricesReport
impl StructuralPartialEq for CloudEnginePricesReport
Auto Trait Implementations§
impl Freeze for CloudEnginePricesReport
impl RefUnwindSafe for CloudEnginePricesReport
impl Send for CloudEnginePricesReport
impl Sync for CloudEnginePricesReport
impl Unpin for CloudEnginePricesReport
impl UnsafeUnpin for CloudEnginePricesReport
impl UnwindSafe for CloudEnginePricesReport
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