pub trait DownloadJava {
    // Required methods
    fn check_version(&self, _root_path: &str, _expected_version: &str) -> bool;
    fn download_java(
        &self,
        _root_path: &str,
        _version: &str,
        _progress: Option<Progress>
    );
}

Required Methods§

source

fn check_version(&self, _root_path: &str, _expected_version: &str) -> bool

source

fn download_java( &self, _root_path: &str, _version: &str, _progress: Option<Progress> )

Implementors§