Skip to content

Commit

Permalink
Make safe fields of Raw types public
Browse files Browse the repository at this point in the history
  • Loading branch information
Santiago Cingolani committed Oct 25, 2024
1 parent 9b315ca commit fb01c38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions heimlig/src/integration/raw_jobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ pub struct RequestResponseRawPair {
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct RequestRaw {
client_id: ClientIdRaw,
request_id: RequestIdRaw,
pub client_id: ClientIdRaw,
pub request_id: RequestIdRaw,
data: RequestDataRaw,
}

Expand Down Expand Up @@ -344,8 +344,8 @@ pub enum RequestDataRaw {
#[repr(C)]
#[derive(Clone, Copy, Debug)]
pub struct ResponseRaw {
client_id: ClientIdRaw,
request_id: RequestIdRaw,
pub client_id: ClientIdRaw,
pub request_id: RequestIdRaw,
data: ResponseDataRaw,
}

Expand Down

0 comments on commit fb01c38

Please sign in to comment.