Skip to main content

Action

Trait Action 

Source
pub trait Action {
    const ACTION: &'static str;

    // Provided methods
    fn to_json_slice<'buf>(
        &self,
        buf: &'buf mut [u8],
    ) -> Result<&'buf [u8], Error>
       where Self: Serialize { ... }
    fn to_json_str<'buf>(&self, buf: &'buf mut [u8]) -> Result<&'buf str, Error>
       where Self: Serialize { ... }
    fn from_json_slice(data: &[u8]) -> Result<Self, Error>
       where Self: Sized + DeserializeOwned { ... }
    fn from_json_str(data: &str) -> Result<Self, Error>
       where Self: Sized + DeserializeOwned { ... }
}

Required Associated Constants§

Source

const ACTION: &'static str

Provided Methods§

Source

fn to_json_slice<'buf>(&self, buf: &'buf mut [u8]) -> Result<&'buf [u8], Error>
where Self: Serialize,

Serializes this message as JSON into buf, returning the written slice. No allocation: the caller owns and sizes the buffer, same as every other bounded type in this crate.

Examples found in repository?
examples/serialization.rs (line 25)
8fn main() {
9    let request = AuthorizeRequest {
10        id_tag: IdTag::try_from("ABC123").expect("fits in 20 chars"),
11    };
12
13    // The caller owns the buffer -- nothing here allocates.
14    let mut buf = [0u8; 256];
15    let json: &str = request.to_json_str(&mut buf).expect("buffer is big enough");
16    println!("serialized: {json}");
17
18    let parsed = AuthorizeRequest::from_json_str(json).expect("valid JSON");
19    assert_eq!(parsed, request);
20    println!("round-tripped successfully: {parsed:?}");
21
22    // `to_json_slice`/`from_json_slice` are the same, but for raw bytes
23    // instead of `&str`.
24    let mut byte_buf = [0u8; 256];
25    let bytes: &[u8] = request.to_json_slice(&mut byte_buf).unwrap();
26    println!("as bytes: {bytes:?}");
27}
Source

fn to_json_str<'buf>(&self, buf: &'buf mut [u8]) -> Result<&'buf str, Error>
where Self: Serialize,

Same as Action::to_json_slice, but returns the written bytes as &str. JSON emitted by serde-json-core is always valid UTF-8.

Examples found in repository?
examples/serialization.rs (line 15)
8fn main() {
9    let request = AuthorizeRequest {
10        id_tag: IdTag::try_from("ABC123").expect("fits in 20 chars"),
11    };
12
13    // The caller owns the buffer -- nothing here allocates.
14    let mut buf = [0u8; 256];
15    let json: &str = request.to_json_str(&mut buf).expect("buffer is big enough");
16    println!("serialized: {json}");
17
18    let parsed = AuthorizeRequest::from_json_str(json).expect("valid JSON");
19    assert_eq!(parsed, request);
20    println!("round-tripped successfully: {parsed:?}");
21
22    // `to_json_slice`/`from_json_slice` are the same, but for raw bytes
23    // instead of `&str`.
24    let mut byte_buf = [0u8; 256];
25    let bytes: &[u8] = request.to_json_slice(&mut byte_buf).unwrap();
26    println!("as bytes: {bytes:?}");
27}
Source

fn from_json_slice(data: &[u8]) -> Result<Self, Error>
where Self: Sized + DeserializeOwned,

Deserializes this message from JSON bytes. No allocation: parsing borrows from data only transiently: Self owns everything via heapless collections, so nothing outlives this call.

Source

fn from_json_str(data: &str) -> Result<Self, Error>
where Self: Sized + DeserializeOwned,

Same as Action::from_json_slice, but takes a &str instead of raw bytes (skipping the UTF-8 check from_json_slice would otherwise need, since &str already guarantees it).

Examples found in repository?
examples/serialization.rs (line 18)
8fn main() {
9    let request = AuthorizeRequest {
10        id_tag: IdTag::try_from("ABC123").expect("fits in 20 chars"),
11    };
12
13    // The caller owns the buffer -- nothing here allocates.
14    let mut buf = [0u8; 256];
15    let json: &str = request.to_json_str(&mut buf).expect("buffer is big enough");
16    println!("serialized: {json}");
17
18    let parsed = AuthorizeRequest::from_json_str(json).expect("valid JSON");
19    assert_eq!(parsed, request);
20    println!("round-tripped successfully: {parsed:?}");
21
22    // `to_json_slice`/`from_json_slice` are the same, but for raw bytes
23    // instead of `&str`.
24    let mut byte_buf = [0u8; 256];
25    let bytes: &[u8] = request.to_json_slice(&mut byte_buf).unwrap();
26    println!("as bytes: {bytes:?}");
27}

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl Action for ocpp_types::v16::AuthorizeRequest

Source§

const ACTION: &'static str = "Authorize"

Source§

impl Action for ocpp_types::v16::AuthorizeResponse

Source§

const ACTION: &'static str = "Authorize"

Source§

impl Action for ocpp_types::v16::BootNotificationRequest

Source§

const ACTION: &'static str = "BootNotification"

Source§

impl Action for ocpp_types::v16::BootNotificationResponse

Source§

const ACTION: &'static str = "BootNotification"

Source§

impl Action for ocpp_types::v16::CancelReservationRequest

Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl Action for ocpp_types::v16::CancelReservationResponse

Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl Action for ocpp_types::v16::CertificateSignedRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl Action for ocpp_types::v16::CertificateSignedResponse

Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl Action for ocpp_types::v16::ChangeAvailabilityRequest

Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl Action for ocpp_types::v16::ChangeAvailabilityResponse

Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl Action for ChangeConfigurationRequest

Source§

const ACTION: &'static str = "ChangeConfiguration"

Source§

impl Action for ChangeConfigurationResponse

Source§

const ACTION: &'static str = "ChangeConfiguration"

Source§

impl Action for ocpp_types::v16::ClearCacheRequest

Source§

const ACTION: &'static str = "ClearCache"

Source§

impl Action for ocpp_types::v16::ClearCacheResponse

Source§

const ACTION: &'static str = "ClearCache"

Source§

impl Action for ocpp_types::v16::ClearChargingProfileRequest

Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl Action for ocpp_types::v16::ClearChargingProfileResponse

Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl Action for ocpp_types::v16::DataTransferRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "DataTransfer"

Source§

impl Action for ocpp_types::v16::DataTransferResponse

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "DataTransfer"

Source§

impl Action for ocpp_types::v16::DeleteCertificateRequest

Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl Action for ocpp_types::v16::DeleteCertificateResponse

Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl Action for DiagnosticsStatusNotificationRequest

Source§

const ACTION: &'static str = "DiagnosticsStatusNotification"

Source§

impl Action for DiagnosticsStatusNotificationResponse

Source§

const ACTION: &'static str = "DiagnosticsStatusNotification"

Source§

impl Action for ExtendedTriggerMessageRequest

Source§

const ACTION: &'static str = "ExtendedTriggerMessage"

Source§

impl Action for ExtendedTriggerMessageResponse

Source§

const ACTION: &'static str = "ExtendedTriggerMessage"

Source§

impl Action for ocpp_types::v16::FirmwareStatusNotificationRequest

Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl Action for ocpp_types::v16::FirmwareStatusNotificationResponse

Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl Action for ocpp_types::v16::GetCompositeScheduleRequest

Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl Action for ocpp_types::v16::GetCompositeScheduleResponse

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl Action for GetConfigurationRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetConfiguration"

Source§

impl Action for GetConfigurationResponse

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetConfiguration"

Source§

impl Action for GetDiagnosticsRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetDiagnostics"

Source§

impl Action for GetDiagnosticsResponse

Source§

const ACTION: &'static str = "GetDiagnostics"

Source§

impl Action for ocpp_types::v16::GetInstalledCertificateIdsRequest

Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl Action for ocpp_types::v16::GetInstalledCertificateIdsResponse

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl Action for ocpp_types::v16::GetLocalListVersionRequest

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl Action for ocpp_types::v16::GetLocalListVersionResponse

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl Action for ocpp_types::v16::GetLogRequest

Source§

const ACTION: &'static str = "GetLog"

Source§

impl Action for ocpp_types::v16::GetLogResponse

Source§

const ACTION: &'static str = "GetLog"

Source§

impl Action for ocpp_types::v16::HeartbeatRequest

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl Action for ocpp_types::v16::HeartbeatResponse

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl Action for ocpp_types::v16::InstallCertificateRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl Action for ocpp_types::v16::InstallCertificateResponse

Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl Action for ocpp_types::v16::LogStatusNotificationRequest

Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl Action for ocpp_types::v16::LogStatusNotificationResponse

Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl Action for ocpp_types::v16::MeterValuesRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "MeterValues"

Source§

impl Action for ocpp_types::v16::MeterValuesResponse

Source§

const ACTION: &'static str = "MeterValues"

Source§

impl Action for RemoteStartTransactionRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RemoteStartTransaction"

Source§

impl Action for RemoteStartTransactionResponse

Source§

const ACTION: &'static str = "RemoteStartTransaction"

Source§

impl Action for RemoteStopTransactionRequest

Source§

const ACTION: &'static str = "RemoteStopTransaction"

Source§

impl Action for RemoteStopTransactionResponse

Source§

const ACTION: &'static str = "RemoteStopTransaction"

Source§

impl Action for ocpp_types::v16::ReserveNowRequest

Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl Action for ocpp_types::v16::ReserveNowResponse

Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl Action for ocpp_types::v16::ResetRequest

Source§

const ACTION: &'static str = "Reset"

Source§

impl Action for ocpp_types::v16::ResetResponse

Source§

const ACTION: &'static str = "Reset"

Source§

impl Action for ocpp_types::v16::SecurityEventNotificationRequest

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl Action for ocpp_types::v16::SecurityEventNotificationResponse

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl Action for ocpp_types::v16::SendLocalListRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl Action for ocpp_types::v16::SendLocalListResponse

Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl Action for ocpp_types::v16::SetChargingProfileRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl Action for ocpp_types::v16::SetChargingProfileResponse

Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl Action for ocpp_types::v16::SignCertificateRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl Action for ocpp_types::v16::SignCertificateResponse

Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl Action for SignedFirmwareStatusNotificationRequest

Source§

const ACTION: &'static str = "SignedFirmwareStatusNotification"

Source§

impl Action for SignedFirmwareStatusNotificationResponse

Source§

const ACTION: &'static str = "SignedFirmwareStatusNotification"

Source§

impl Action for SignedUpdateFirmwareRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SignedUpdateFirmware"

Source§

impl Action for SignedUpdateFirmwareResponse

Source§

const ACTION: &'static str = "SignedUpdateFirmware"

Source§

impl Action for StartTransactionRequest

Source§

const ACTION: &'static str = "StartTransaction"

Source§

impl Action for StartTransactionResponse

Source§

const ACTION: &'static str = "StartTransaction"

Source§

impl Action for ocpp_types::v16::StatusNotificationRequest

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl Action for ocpp_types::v16::StatusNotificationResponse

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl Action for StopTransactionRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "StopTransaction"

Source§

impl Action for StopTransactionResponse

Source§

const ACTION: &'static str = "StopTransaction"

Source§

impl Action for ocpp_types::v16::TriggerMessageRequest

Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl Action for ocpp_types::v16::TriggerMessageResponse

Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl Action for ocpp_types::v16::UnlockConnectorRequest

Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl Action for ocpp_types::v16::UnlockConnectorResponse

Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl Action for ocpp_types::v16::UpdateFirmwareRequest

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl Action for ocpp_types::v16::UpdateFirmwareResponse

Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl<CustomDataType> Action for AFRRSignalRequest<CustomDataType>

Source§

const ACTION: &'static str = "AFRRSignal"

Source§

impl<CustomDataType> Action for AFRRSignalResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "AFRRSignal"

Source§

impl<CustomDataType> Action for AdjustPeriodicEventStreamRequest<CustomDataType>

Source§

const ACTION: &'static str = "AdjustPeriodicEventStream"

Source§

impl<CustomDataType> Action for AdjustPeriodicEventStreamResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "AdjustPeriodicEventStream"

Source§

impl<CustomDataType> Action for ocpp_types::v201::AuthorizeRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Authorize"

Source§

impl<CustomDataType> Action for ocpp_types::v21::AuthorizeRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Authorize"

Source§

impl<CustomDataType> Action for ocpp_types::v201::AuthorizeResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Authorize"

Source§

impl<CustomDataType> Action for ocpp_types::v21::AuthorizeResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Authorize"

Source§

impl<CustomDataType> Action for BatterySwapRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "BatterySwap"

Source§

impl<CustomDataType> Action for BatterySwapResponse<CustomDataType>

Source§

const ACTION: &'static str = "BatterySwap"

Source§

impl<CustomDataType> Action for ocpp_types::v201::BootNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "BootNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::BootNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "BootNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::BootNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "BootNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::BootNotificationResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "BootNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CancelReservationRequest<CustomDataType>

Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CancelReservationRequest<CustomDataType>

Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CancelReservationResponse<CustomDataType>

Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CancelReservationResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CancelReservation"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CertificateSignedRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CertificateSignedRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CertificateSignedResponse<CustomDataType>

Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CertificateSignedResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CertificateSigned"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ChangeAvailabilityRequest<CustomDataType>

Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ChangeAvailabilityRequest<CustomDataType>

Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ChangeAvailabilityResponse<CustomDataType>

Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ChangeAvailabilityResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ChangeAvailability"

Source§

impl<CustomDataType> Action for ChangeTransactionTariffRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ChangeTransactionTariff"

Source§

impl<CustomDataType> Action for ChangeTransactionTariffResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ChangeTransactionTariff"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearCacheRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearCache"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearCacheRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearCache"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearCacheResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClearCache"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearCacheResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearCache"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearChargingProfileRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearChargingProfileRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearChargingProfileResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearChargingProfileResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearChargingProfile"

Source§

impl<CustomDataType> Action for ClearDERControlRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearDERControl"

Source§

impl<CustomDataType> Action for ClearDERControlResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearDERControl"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearDisplayMessageRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearDisplayMessageRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearDisplayMessageResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClearDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearDisplayMessageResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearDisplayMessage"

Source§

impl<CustomDataType> Action for ClearTariffsRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearTariffs"

Source§

impl<CustomDataType> Action for ClearTariffsResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearTariffs"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearVariableMonitoringRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearVariableMonitoringRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearVariableMonitoringResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearVariableMonitoringResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ClearVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearedChargingLimitRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearedChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearedChargingLimitRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClearedChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ClearedChargingLimitResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClearedChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ClearedChargingLimitResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClearedChargingLimit"

Source§

impl<CustomDataType> Action for ClosePeriodicEventStreamRequest<CustomDataType>

Source§

const ACTION: &'static str = "ClosePeriodicEventStream"

Source§

impl<CustomDataType> Action for ClosePeriodicEventStreamResponse<CustomDataType>

Source§

const ACTION: &'static str = "ClosePeriodicEventStream"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CostUpdatedRequest<CustomDataType>

Source§

const ACTION: &'static str = "CostUpdated"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CostUpdatedRequest<CustomDataType>

Source§

const ACTION: &'static str = "CostUpdated"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CostUpdatedResponse<CustomDataType>

Source§

const ACTION: &'static str = "CostUpdated"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CostUpdatedResponse<CustomDataType>

Source§

const ACTION: &'static str = "CostUpdated"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CustomerInformationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CustomerInformationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v201::CustomerInformationResponse<CustomDataType>

Source§

const ACTION: &'static str = "CustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::CustomerInformationResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "CustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v201::DeleteCertificateRequest<CustomDataType>

Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::DeleteCertificateRequest<CustomDataType>

Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::DeleteCertificateResponse<CustomDataType>

Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::DeleteCertificateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "DeleteCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::FirmwareStatusNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::FirmwareStatusNotificationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::FirmwareStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::FirmwareStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "FirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::Get15118EVCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Get15118EVCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::Get15118EVCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Get15118EVCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::Get15118EVCertificateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Get15118EVCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::Get15118EVCertificateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Get15118EVCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetBaseReportRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetBaseReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetBaseReportRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetBaseReport"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetBaseReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetBaseReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetBaseReportResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetBaseReport"

Source§

impl<CustomDataType> Action for GetCertificateChainStatusRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCertificateChainStatus"

Source§

impl<CustomDataType> Action for GetCertificateChainStatusResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetCertificateChainStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetCertificateStatusRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetCertificateStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetCertificateStatusRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCertificateStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetCertificateStatusResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCertificateStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetCertificateStatusResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCertificateStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetChargingProfilesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetChargingProfilesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetChargingProfilesResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetChargingProfilesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetCompositeScheduleRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetCompositeScheduleRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetCompositeScheduleResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetCompositeScheduleResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetCompositeSchedule"

Source§

impl<CustomDataType> Action for GetDERControlRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetDERControl"

Source§

impl<CustomDataType> Action for GetDERControlResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetDERControl"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetDisplayMessagesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetDisplayMessagesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetDisplayMessagesResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetDisplayMessagesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetInstalledCertificateIdsRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetInstalledCertificateIdsRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetInstalledCertificateIdsResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetInstalledCertificateIdsResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetInstalledCertificateIds"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetLocalListVersionRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetLocalListVersionRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetLocalListVersionResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetLocalListVersionResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetLocalListVersion"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetLogRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetLog"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetLogRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetLog"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetLogResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetLog"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetLogResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetLog"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetMonitoringReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetMonitoringReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetMonitoringReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetMonitoringReportResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetMonitoringReport"

Source§

impl<CustomDataType> Action for GetPeriodicEventStreamRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetPeriodicEventStream"

Source§

impl<CustomDataType> Action for GetPeriodicEventStreamResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetPeriodicEventStream"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetReport"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetReportResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetReport"

Source§

impl<CustomDataType> Action for GetTariffsRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetTariffs"

Source§

impl<CustomDataType> Action for GetTariffsResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetTariffs"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetTransactionStatusRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetTransactionStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetTransactionStatusRequest<CustomDataType>

Source§

const ACTION: &'static str = "GetTransactionStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetTransactionStatusResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetTransactionStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetTransactionStatusResponse<CustomDataType>

Source§

const ACTION: &'static str = "GetTransactionStatus"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetVariablesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetVariablesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v201::GetVariablesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v21::GetVariablesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "GetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v201::HeartbeatRequest<CustomDataType>

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl<CustomDataType> Action for ocpp_types::v21::HeartbeatRequest<CustomDataType>

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl<CustomDataType> Action for ocpp_types::v201::HeartbeatResponse<CustomDataType>

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl<CustomDataType> Action for ocpp_types::v21::HeartbeatResponse<CustomDataType>

Source§

const ACTION: &'static str = "Heartbeat"

Source§

impl<CustomDataType> Action for ocpp_types::v201::InstallCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::InstallCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::InstallCertificateResponse<CustomDataType>

Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::InstallCertificateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "InstallCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::LogStatusNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::LogStatusNotificationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::LogStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::LogStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "LogStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::MeterValuesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "MeterValues"

Source§

impl<CustomDataType> Action for ocpp_types::v21::MeterValuesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "MeterValues"

Source§

impl<CustomDataType> Action for ocpp_types::v201::MeterValuesResponse<CustomDataType>

Source§

const ACTION: &'static str = "MeterValues"

Source§

impl<CustomDataType> Action for ocpp_types::v21::MeterValuesResponse<CustomDataType>

Source§

const ACTION: &'static str = "MeterValues"

Source§

impl<CustomDataType> Action for NotifyAllowedEnergyTransferRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyAllowedEnergyTransfer"

Source§

impl<CustomDataType> Action for NotifyAllowedEnergyTransferResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyAllowedEnergyTransfer"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyChargingLimitRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyChargingLimitRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyChargingLimitResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyChargingLimitResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyChargingLimit"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyCustomerInformationRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyCustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyCustomerInformationRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyCustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyCustomerInformationResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyCustomerInformation"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyCustomerInformationResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyCustomerInformation"

Source§

impl<CustomDataType> Action for NotifyDERAlarmRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyDERAlarm"

Source§

impl<CustomDataType> Action for NotifyDERAlarmResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyDERAlarm"

Source§

impl<CustomDataType> Action for NotifyDERStartStopRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyDERStartStop"

Source§

impl<CustomDataType> Action for NotifyDERStartStopResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyDERStartStop"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyDisplayMessagesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyDisplayMessagesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyDisplayMessagesResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyDisplayMessagesResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyDisplayMessages"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEVChargingNeedsRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyEVChargingNeeds"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEVChargingNeedsRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEVChargingNeeds"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEVChargingNeedsResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyEVChargingNeeds"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEVChargingNeedsResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEVChargingNeeds"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEVChargingScheduleRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEVChargingSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEVChargingScheduleRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEVChargingSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEVChargingScheduleResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyEVChargingSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEVChargingScheduleResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEVChargingSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEventRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEventRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyEventResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyEventResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyMonitoringReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyMonitoringReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyMonitoringReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyMonitoringReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyMonitoringReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyMonitoringReport"

Source§

impl<CustomDataType> Action for NotifyPeriodicEventStream<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyPeriodicEventStream"

Source§

impl<CustomDataType> Action for NotifyPriorityChargingRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyPriorityCharging"

Source§

impl<CustomDataType> Action for NotifyPriorityChargingResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyPriorityCharging"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyReportRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifyReport"

Source§

impl<CustomDataType> Action for ocpp_types::v201::NotifyReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyReport"

Source§

impl<CustomDataType> Action for ocpp_types::v21::NotifyReportResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyReport"

Source§

impl<CustomDataType> Action for NotifySettlementRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifySettlement"

Source§

impl<CustomDataType> Action for NotifySettlementResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "NotifySettlement"

Source§

impl<CustomDataType> Action for NotifyWebPaymentStartedRequest<CustomDataType>

Source§

const ACTION: &'static str = "NotifyWebPaymentStarted"

Source§

impl<CustomDataType> Action for NotifyWebPaymentStartedResponse<CustomDataType>

Source§

const ACTION: &'static str = "NotifyWebPaymentStarted"

Source§

impl<CustomDataType> Action for OpenPeriodicEventStreamRequest<CustomDataType>

Source§

const ACTION: &'static str = "OpenPeriodicEventStream"

Source§

impl<CustomDataType> Action for OpenPeriodicEventStreamResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "OpenPeriodicEventStream"

Source§

impl<CustomDataType> Action for ocpp_types::v201::PublishFirmwareRequest<CustomDataType>

Source§

const ACTION: &'static str = "PublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::PublishFirmwareRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "PublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v201::PublishFirmwareResponse<CustomDataType>

Source§

const ACTION: &'static str = "PublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::PublishFirmwareResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "PublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v201::PublishFirmwareStatusNotificationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "PublishFirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::PublishFirmwareStatusNotificationRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "PublishFirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::PublishFirmwareStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "PublishFirmwareStatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::PublishFirmwareStatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "PublishFirmwareStatusNotification"

Source§

impl<CustomDataType> Action for PullDynamicScheduleUpdateRequest<CustomDataType>

Source§

const ACTION: &'static str = "PullDynamicScheduleUpdate"

Source§

impl<CustomDataType> Action for PullDynamicScheduleUpdateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "PullDynamicScheduleUpdate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReportChargingProfilesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReportChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReportChargingProfilesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReportChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReportChargingProfilesResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReportChargingProfiles"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReportChargingProfilesResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReportChargingProfiles"

Source§

impl<CustomDataType> Action for ReportDERControlRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReportDERControl"

Source§

impl<CustomDataType> Action for ReportDERControlResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReportDERControl"

Source§

impl<CustomDataType> Action for RequestBatterySwapRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestBatterySwap"

Source§

impl<CustomDataType> Action for RequestBatterySwapResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestBatterySwap"

Source§

impl<CustomDataType> Action for ocpp_types::v201::RequestStartTransactionRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestStartTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v21::RequestStartTransactionRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestStartTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v201::RequestStartTransactionResponse<CustomDataType>

Source§

const ACTION: &'static str = "RequestStartTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v21::RequestStartTransactionResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestStartTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v201::RequestStopTransactionRequest<CustomDataType>

Source§

const ACTION: &'static str = "RequestStopTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v21::RequestStopTransactionRequest<CustomDataType>

Source§

const ACTION: &'static str = "RequestStopTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v201::RequestStopTransactionResponse<CustomDataType>

Source§

const ACTION: &'static str = "RequestStopTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v21::RequestStopTransactionResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "RequestStopTransaction"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReservationStatusUpdateRequest<CustomDataType>

Source§

const ACTION: &'static str = "ReservationStatusUpdate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReservationStatusUpdateRequest<CustomDataType>

Source§

const ACTION: &'static str = "ReservationStatusUpdate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReservationStatusUpdateResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReservationStatusUpdate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReservationStatusUpdateResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReservationStatusUpdate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReserveNowRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReserveNowRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ReserveNowResponse<CustomDataType>

Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ReserveNowResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "ReserveNow"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ResetRequest<CustomDataType>

Source§

const ACTION: &'static str = "Reset"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ResetRequest<CustomDataType>

Source§

const ACTION: &'static str = "Reset"

Source§

impl<CustomDataType> Action for ocpp_types::v201::ResetResponse<CustomDataType>

Source§

const ACTION: &'static str = "Reset"

Source§

impl<CustomDataType> Action for ocpp_types::v21::ResetResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "Reset"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SecurityEventNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SecurityEventNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SecurityEventNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SecurityEventNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "SecurityEventNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SendLocalListRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SendLocalListRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SendLocalListResponse<CustomDataType>

Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SendLocalListResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SendLocalList"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetChargingProfileRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetChargingProfileRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetChargingProfileResponse<CustomDataType>

Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetChargingProfileResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetChargingProfile"

Source§

impl<CustomDataType> Action for SetDERControlRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetDERControl"

Source§

impl<CustomDataType> Action for SetDERControlResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetDERControl"

Source§

impl<CustomDataType> Action for SetDefaultTariffRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetDefaultTariff"

Source§

impl<CustomDataType> Action for SetDefaultTariffResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetDefaultTariff"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetDisplayMessageRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetDisplayMessageRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetDisplayMessageResponse<CustomDataType>

Source§

const ACTION: &'static str = "SetDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetDisplayMessageResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetDisplayMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetMonitoringBaseRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringBase"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetMonitoringBaseRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringBase"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetMonitoringBaseResponse<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringBase"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetMonitoringBaseResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetMonitoringBase"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetMonitoringLevelRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringLevel"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetMonitoringLevelRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringLevel"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetMonitoringLevelResponse<CustomDataType>

Source§

const ACTION: &'static str = "SetMonitoringLevel"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetMonitoringLevelResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetMonitoringLevel"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetNetworkProfileRequest<CustomDataType>

Source§

const ACTION: &'static str = "SetNetworkProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetNetworkProfileRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetNetworkProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetNetworkProfileResponse<CustomDataType>

Source§

const ACTION: &'static str = "SetNetworkProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetNetworkProfileResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetNetworkProfile"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetVariableMonitoringRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetVariableMonitoringRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetVariableMonitoringResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetVariableMonitoringResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariableMonitoring"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetVariablesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetVariablesRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SetVariablesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SetVariablesResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SetVariables"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SignCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SignCertificateRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::SignCertificateResponse<CustomDataType>

Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v21::SignCertificateResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "SignCertificate"

Source§

impl<CustomDataType> Action for ocpp_types::v201::StatusNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::StatusNotificationRequest<CustomDataType>

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::StatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v21::StatusNotificationResponse<CustomDataType>

Source§

const ACTION: &'static str = "StatusNotification"

Source§

impl<CustomDataType> Action for ocpp_types::v201::TransactionEventRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "TransactionEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v21::TransactionEventRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "TransactionEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v201::TransactionEventResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "TransactionEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v21::TransactionEventResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "TransactionEvent"

Source§

impl<CustomDataType> Action for ocpp_types::v201::TriggerMessageRequest<CustomDataType>

Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::TriggerMessageRequest<CustomDataType>

Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v201::TriggerMessageResponse<CustomDataType>

Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v21::TriggerMessageResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "TriggerMessage"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UnlockConnectorRequest<CustomDataType>

Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UnlockConnectorRequest<CustomDataType>

Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UnlockConnectorResponse<CustomDataType>

Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UnlockConnectorResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UnlockConnector"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UnpublishFirmwareRequest<CustomDataType>

Source§

const ACTION: &'static str = "UnpublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UnpublishFirmwareRequest<CustomDataType>

Source§

const ACTION: &'static str = "UnpublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UnpublishFirmwareResponse<CustomDataType>

Source§

const ACTION: &'static str = "UnpublishFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UnpublishFirmwareResponse<CustomDataType>

Source§

const ACTION: &'static str = "UnpublishFirmware"

Source§

impl<CustomDataType> Action for UpdateDynamicScheduleRequest<CustomDataType>

Source§

const ACTION: &'static str = "UpdateDynamicSchedule"

Source§

impl<CustomDataType> Action for UpdateDynamicScheduleResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UpdateDynamicSchedule"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UpdateFirmwareRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UpdateFirmwareRequest<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v201::UpdateFirmwareResponse<CustomDataType>

Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl<CustomDataType> Action for ocpp_types::v21::UpdateFirmwareResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UpdateFirmware"

Source§

impl<CustomDataType> Action for UsePriorityChargingRequest<CustomDataType>

Source§

const ACTION: &'static str = "UsePriorityCharging"

Source§

impl<CustomDataType> Action for UsePriorityChargingResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "UsePriorityCharging"

Source§

impl<CustomDataType> Action for VatNumberValidationRequest<CustomDataType>

Source§

const ACTION: &'static str = "VatNumberValidation"

Source§

impl<CustomDataType> Action for VatNumberValidationResponse<CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "VatNumberValidation"

Source§

impl<DataTransferRequestData, CustomDataType> Action for ocpp_types::v201::DataTransferRequest<DataTransferRequestData, CustomDataType>

Source§

const ACTION: &'static str = "DataTransfer"

Source§

impl<DataTransferRequestData, CustomDataType> Action for ocpp_types::v21::DataTransferRequest<DataTransferRequestData, CustomDataType>

Source§

const ACTION: &'static str = "DataTransfer"

Source§

impl<DataTransferResponseData, CustomDataType> Action for ocpp_types::v201::DataTransferResponse<DataTransferResponseData, CustomDataType>

Source§

const ACTION: &'static str = "DataTransfer"

Source§

impl<DataTransferResponseData, CustomDataType> Action for ocpp_types::v21::DataTransferResponse<DataTransferResponseData, CustomDataType>

Available on crate feature alloc only.
Source§

const ACTION: &'static str = "DataTransfer"