pub struct GoogleMapsPlacesV1SearchTextRequestEVOptions {
pub connector_types: Option<Vec<String>>,
pub minimum_charging_rate_kw: Option<f64>,
}Expand description
Searchable EV options of a place search request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§connector_types: Option<Vec<String>>Optional. The list of preferred EV connector types. A place that does not support any of the listed connector types is filtered out.
minimum_charging_rate_kw: Option<f64>Optional. Minimum required charging rate in kilowatts. A place with a charging rate less than the specified rate is filtered out.
Trait Implementations§
Source§impl Clone for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl Clone for GoogleMapsPlacesV1SearchTextRequestEVOptions
Source§fn clone(&self) -> GoogleMapsPlacesV1SearchTextRequestEVOptions
fn clone(&self) -> GoogleMapsPlacesV1SearchTextRequestEVOptions
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 Default for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl Default for GoogleMapsPlacesV1SearchTextRequestEVOptions
Source§fn default() -> GoogleMapsPlacesV1SearchTextRequestEVOptions
fn default() -> GoogleMapsPlacesV1SearchTextRequestEVOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl<'de> Deserialize<'de> for GoogleMapsPlacesV1SearchTextRequestEVOptions
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
impl Part for GoogleMapsPlacesV1SearchTextRequestEVOptions
Auto Trait Implementations§
impl Freeze for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl RefUnwindSafe for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl Send for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl Sync for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl Unpin for GoogleMapsPlacesV1SearchTextRequestEVOptions
impl UnwindSafe for GoogleMapsPlacesV1SearchTextRequestEVOptions
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