pub struct BootNotificationResponse {
pub current_time: DateTime<Utc>,
pub interval: u16,
pub status: RegistrationStatusEnumType,
pub status_info: Option<StatusInfoType>,
}
Expand description
BootNotificationResponse
, sent by the CSMS to the Charging Station in response to a BootNotificationRequest
.
Fields
current_time: DateTime<Utc>
This contains the CSMS’s current time.
interval: u16
When status is Accepted, this contains the heartbeat interval in seconds.
If the CSMS returns something other than Accepted, the value of the interval
field indicates the minimum wait time before sending a next BootNotificationRequest
.
status: RegistrationStatusEnumType
This contains whether the Charging Station has been registered within the CSMS.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations
sourceimpl Clone for BootNotificationResponse
impl Clone for BootNotificationResponse
sourcefn clone(&self) -> BootNotificationResponse
fn clone(&self) -> BootNotificationResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BootNotificationResponse
impl Debug for BootNotificationResponse
sourceimpl<'de> Deserialize<'de> for BootNotificationResponse
impl<'de> Deserialize<'de> for BootNotificationResponse
sourcefn 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
sourceimpl Display for BootNotificationResponse
impl Display for BootNotificationResponse
sourceimpl PartialEq<BootNotificationResponse> for BootNotificationResponse
impl PartialEq<BootNotificationResponse> for BootNotificationResponse
sourcefn eq(&self, other: &BootNotificationResponse) -> bool
fn eq(&self, other: &BootNotificationResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BootNotificationResponse) -> bool
fn ne(&self, other: &BootNotificationResponse) -> bool
This method tests for !=
.
sourceimpl Serialize for BootNotificationResponse
impl Serialize for BootNotificationResponse
impl StructuralPartialEq for BootNotificationResponse
Auto Trait Implementations
impl RefUnwindSafe for BootNotificationResponse
impl Send for BootNotificationResponse
impl Sync for BootNotificationResponse
impl Unpin for BootNotificationResponse
impl UnwindSafe for BootNotificationResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more