rustcracker 1.1.1+deprecated

A crate for communicating with firecracker for the development of PKU-cloud.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[repr(transparent)]
pub struct PatchGuestDriveByIDRequest(PartialDrive);

#[repr(transparent)]
pub struct PatchGuestDriveByIDResponse(pub Either<Empty, InternalError>);

#[repr(transparent)]
pub struct PatchGuestDriveByID(pub PatchGuestDriveByIDRequest);

impl_all_firecracker_traits!(
    PatchGuestDriveByID,
    "PATCH",
    "/drives",
    PartialDrive,
    drive_id,
    Empty,
    InternalError
);