[][src]Trait mygpoclient::settings::GetDeviceSettings

pub trait GetDeviceSettings {
    fn get_device_settings(&self) -> Result<HashMap<String, String>, Error>;
}

Required methods

fn get_device_settings(&self) -> Result<HashMap<String, String>, Error>

Get Device Settings

Examples

use mygpoclient::client::DeviceClient;
use mygpoclient::settings::GetDeviceSettings;

let client = DeviceClient::new(&username, &password, &deviceid);

let settings = client.get_device_settings()?;

See also

Loading content...

Implementors

impl GetDeviceSettings for DeviceClient[src]

Loading content...