pub struct ChangeAvailabilityResponse {
pub status: ChangeAvailabilityStatusEnumType,
pub status_info: Option<StatusInfoType>,
}
Expand description
ChangeAvailabilityResponse
, sent by the Charging Station to the CSMS.
Fields§
§status: ChangeAvailabilityStatusEnumType
This indicates whether the Charging Station is able to perform the availability change.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations§
Source§impl Clone for ChangeAvailabilityResponse
impl Clone for ChangeAvailabilityResponse
Source§fn clone(&self) -> ChangeAvailabilityResponse
fn clone(&self) -> ChangeAvailabilityResponse
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 ChangeAvailabilityResponse
impl Debug for ChangeAvailabilityResponse
Source§impl Default for ChangeAvailabilityResponse
impl Default for ChangeAvailabilityResponse
Source§fn default() -> ChangeAvailabilityResponse
fn default() -> ChangeAvailabilityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangeAvailabilityResponse
impl<'de> Deserialize<'de> for ChangeAvailabilityResponse
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 StructuralPartialEq for ChangeAvailabilityResponse
Auto Trait Implementations§
impl Freeze for ChangeAvailabilityResponse
impl RefUnwindSafe for ChangeAvailabilityResponse
impl Send for ChangeAvailabilityResponse
impl Sync for ChangeAvailabilityResponse
impl Unpin for ChangeAvailabilityResponse
impl UnwindSafe for ChangeAvailabilityResponse
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