pub struct ClimateSupplier {
pub id: ClimateSupplierId,
pub info_url: String,
pub livemode: bool,
pub locations: Vec<ClimateRemovalsLocation>,
pub name: String,
pub removal_pathway: ClimateSupplierRemovalPathway,
}
Expand description
A supplier of carbon removal.
Fields§
§id: ClimateSupplierId
Unique identifier for the object.
info_url: String
Link to a webpage to learn more about the supplier.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
locations: Vec<ClimateRemovalsLocation>
The locations in which this supplier operates.
name: String
Name of this carbon removal supplier.
removal_pathway: ClimateSupplierRemovalPathway
The scientific pathway used for carbon removal.
Trait Implementations§
Source§impl Clone for ClimateSupplier
impl Clone for ClimateSupplier
Source§fn clone(&self) -> ClimateSupplier
fn clone(&self) -> ClimateSupplier
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 ClimateSupplier
impl Debug for ClimateSupplier
Source§impl Deserialize for ClimateSupplier
impl Deserialize for ClimateSupplier
Source§impl FromValueOpt for ClimateSupplier
impl FromValueOpt for ClimateSupplier
fn from_value(v: Value) -> Option<Self>
Source§impl Object for ClimateSupplier
impl Object for ClimateSupplier
Source§impl ObjectDeser for ClimateSupplier
impl ObjectDeser for ClimateSupplier
Auto Trait Implementations§
impl Freeze for ClimateSupplier
impl RefUnwindSafe for ClimateSupplier
impl Send for ClimateSupplier
impl Sync for ClimateSupplier
impl Unpin for ClimateSupplier
impl UnwindSafe for ClimateSupplier
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