Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 811105be authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "automotive aidl: Add required @RustDerive annotations" into main am: 31f8d6e3

parents 87d7c8af 31f8d6e3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
a741c2814ba6e9852e106bc26e820d741f66ebb8
2e101035a8abf667295ca2106bebb8850b9bdc9c
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@JavaDerive(equals=true, toString=true) @VintfStability
@JavaDerive(equals=true, toString=true) @RustDerive(Clone=true) @VintfStability
parcelable GetValueRequest {
  long requestId;
  android.hardware.automotive.vehicle.VehiclePropValue prop;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@JavaDerive(equals=true, toString=true) @VintfStability
@JavaDerive(equals=true, toString=true) @RustDerive(Clone=true) @VintfStability
parcelable GetValueResult {
  long requestId;
  android.hardware.automotive.vehicle.StatusCode status = android.hardware.automotive.vehicle.StatusCode.OK;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@JavaDerive(equals=true, toString=true) @VintfStability
@JavaDerive(equals=true, toString=true) @RustDerive(Clone=true) @VintfStability
parcelable RawPropValues {
  int[] int32Values = {};
  float[] floatValues;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@JavaDerive(equals=true, toString=true) @VintfStability
@JavaDerive(equals=true, toString=true) @RustDerive(Clone=true) @VintfStability
parcelable SetValueRequest {
  long requestId;
  android.hardware.automotive.vehicle.VehiclePropValue value;
Loading