pub struct Builder {
pub host: String,
pub user: String,
pub max_jobs: u32,
pub speed_factor: u32,
pub systems: Vec<String>,
pub features: Vec<String>,
pub ssh_key: Option<String>,
pub protocol: String,
}Expand description
A remote builder machine.
Fields§
§host: StringBuilder hostname or IP.
user: StringSSH user for builder access.
max_jobs: u32Maximum concurrent build jobs.
speed_factor: u32Speed factor (higher = preferred).
systems: Vec<String>Supported system types.
features: Vec<String>Supported build features.
ssh_key: Option<String>Path to SSH identity file for builder access.
protocol: StringSSH protocol (e.g. “ssh-ng”).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Builder
impl<'de> Deserialize<'de> for Builder
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Builder
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnsafeUnpin for Builder
impl UnwindSafe for Builder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more