pub struct BootNotificationRequest {
    pub charge_box_serial_number: Option<String>,
    pub charge_point_model: String,
    pub charge_point_serial_number: Option<String>,
    pub charge_point_vendor: String,
    pub firmware_version: Option<String>,
    pub iccid: Option<String>,
    pub imsi: Option<String>,
    pub meter_serial_number: Option<String>,
    pub meter_type: Option<String>,
}

Fields

charge_box_serial_number: Option<String>

From OCPP Specification

Optional. This contains a value that identifies the serial number of the Charge Box inside the Charge Point. Deprecated, will be removed in future version

charge_point_model: String

From OCPP Specification

Required. This contains a value that identifies the model of the ChargePoint.

charge_point_serial_number: Option<String>

From OCPP Specification

Optional. This contains a value that identifies the serial number of the Charge Point.

charge_point_vendor: String

From OCPP Specification

Required. This contains a value that identifies the vendor of the ChargePoint.

firmware_version: Option<String>

From OCPP Specification

Optional. This contains the firmware version of the Charge Point.

iccid: Option<String>

From OCPP Specification

Optional. This contains the ICCID of the modem’s SIM card.

imsi: Option<String>

From OCPP Specification

Optional. This contains the IMSI of the modem’s SIM card.

meter_serial_number: Option<String>

From OCPP Specification

Optional. This contains the serial number of the main electrical meter of the Charge Point.

meter_type: Option<String>

From OCPP Specification

Optional. This contains the type of the main electrical meter of the Charge Point.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.