Struct rust_ocpp::v1_6::messages::boot_notification::BootNotificationResponse
source · [−]pub struct BootNotificationResponse {
pub current_time: DateTime<Utc>,
pub interval: u32,
pub status: RegistrationStatus,
}
Fields
current_time: DateTime<Utc>
From OCPP Specification
Required. This contains the Central System’s current time.
interval: u32
From OCPP Specification
Required. When RegistrationStatus is Accepted, this contains the heartbeat interval in seconds. If the Central System returns something other than Accepted, the value of the interval field indicates the minimum wait time before sending a next BootNotification request.
status: RegistrationStatus
From OCPP Specification
Required. This contains whether the Charge Point has been registered within the System Central.
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 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
sourceimpl Validate for BootNotificationResponse
impl Validate for BootNotificationResponse
fn validate(&self) -> Result<(), ValidationErrors>
sourceimpl<'v_a> ValidateArgs<'v_a> for BootNotificationResponse
impl<'v_a> ValidateArgs<'v_a> for BootNotificationResponse
type Args = ()
fn validate_args(&self, args: Self::Args) -> Result<(), ValidationErrors>
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