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
#[repr(transparent)]
pub struct DescribeBalloonConfigRequest;

#[repr(transparent)]
pub struct DescribeBalloonConfigResponse(pub Either<Balloon, InternalError>);

#[repr(transparent)]
pub struct DescribeBalloonConfig(pub DescribeBalloonConfigRequest);

impl_all_firecracker_traits!(DescribeBalloonConfig, "GET", "/", Balloon, InternalError);