lib_remotebuild-rs 0.1.6

A wrapper for the remote build API written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Default, Clone)]
pub struct RequestConfig {
    /// URL to the remote build server
    pub url: String,
    /// Local machine_id from /etc/machine-id
    pub machine_id: String,
    /// Remotebuild username
    pub username: String,
    /// SessionToken for authorizing
    pub token: String,
}