pub struct ClimateRemovalsOrderDeliveries {
pub delivered_at: Timestamp,
pub location: Option<ClimateRemovalsLocation>,
pub metric_tons: String,
pub registry_url: Option<String>,
pub supplier: ClimateSupplier,
}Expand description
The delivery of a specified quantity of carbon for an order.
Fields§
§delivered_at: TimestampTime at which the delivery occurred. Measured in seconds since the Unix epoch.
location: Option<ClimateRemovalsLocation>Specific location of this delivery.
metric_tons: StringQuantity of carbon removal supplied by this delivery.
registry_url: Option<String>Once retired, a URL to the registry entry for the tons from this delivery.
supplier: ClimateSupplierTrait Implementations§
Source§impl Clone for ClimateRemovalsOrderDeliveries
impl Clone for ClimateRemovalsOrderDeliveries
Source§fn clone(&self) -> ClimateRemovalsOrderDeliveries
fn clone(&self) -> ClimateRemovalsOrderDeliveries
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 FromValueOpt for ClimateRemovalsOrderDeliveries
impl FromValueOpt for ClimateRemovalsOrderDeliveries
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for ClimateRemovalsOrderDeliveries
impl RefUnwindSafe for ClimateRemovalsOrderDeliveries
impl Send for ClimateRemovalsOrderDeliveries
impl Sync for ClimateRemovalsOrderDeliveries
impl Unpin for ClimateRemovalsOrderDeliveries
impl UnwindSafe for ClimateRemovalsOrderDeliveries
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