Struct doapi::request::Droplet [] [src]

pub struct Droplet {
    pub name: String,
    pub region: String,
    pub size: String,
    pub image: String,
    pub ssh_keys: Option<Vec<String>>,
    pub backups: bool,
    pub ipv6: bool,
    pub private_networking: bool,
    pub user_data: Option<String>,
}

Fields

name
region
size
image
ssh_keys
backups
ipv6
private_networking
user_data

Trait Implementations

impl Display for Droplet

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl Serialize for Droplet

fn serialize<__S>(&self, serializer: &mut __S) -> Result<(), __S::Error> where __S: Serializer