[][src]Trait ommui_data::ommui::LoadableDevice

pub trait LoadableDevice {
    fn load_system_profile_index(&self) -> Result<IndexSet<Uuid>>;
fn load_user_profile_index(&self) -> Result<IndexSet<Uuid>>;
fn load_calibration_index(&self) -> Result<IndexSet<String>>;
fn load_device_settings(&self) -> Result<DeviceSettings>;
fn load_calibration_description(
        &self,
        calibration_id: &str
    ) -> Result<CalibrationDescription>;
fn load_sampling_settings(
        &self,
        sampling_id: &str
    ) -> Result<SamplingSettings>;
fn load_calibration(&self, calibration_id: &str) -> Result<Calibration>;
fn load_sample_cached_information(
        &self
    ) -> Result<IndexMap<Uuid, SampleCachedInformation>>; fn load_calibrations(&self) -> Result<IndexMap<String, Calibration>> { ... }
fn load_sampling(&self, sampling_id: &str) -> Result<Sampling> { ... } }

Required methods

Loading content...

Provided methods

fn load_calibrations(&self) -> Result<IndexMap<String, Calibration>>

fn load_sampling(&self, sampling_id: &str) -> Result<Sampling>

Loading content...

Implementors

Loading content...