Skip to main content

StateControllerProxyInterface

Trait StateControllerProxyInterface 

Source
pub trait StateControllerProxyInterface: Send + Sync {
    type SetSystemTypeResponseFut: Future<Output = Result<StateControllerSetSystemTypeResult, Error>> + Send;

    // Required method
    fn set_system_type(
        &self,
        system_type: SystemType,
    ) -> Self::SetSystemTypeResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn set_system_type( &self, system_type: SystemType, ) -> Self::SetSystemTypeResponseFut

Implementors§