pub struct LinuxConfig {
pub distribution: LinuxDistribution,
pub language: String,
pub authorized_keys: Vec<String>,
}
Expand description
Applicable Linux boot configuration.
Fields§
§distribution: LinuxDistribution
Distribution to install.
language: String
Language to use for the installation.
Authorized keys to add to the root user on the installed distribution.
If not set, a root password will instead be configured, and returned as part of the reponse when activating the system.
Trait Implementations§
Source§impl Clone for LinuxConfig
impl Clone for LinuxConfig
Source§fn clone(&self) -> LinuxConfig
fn clone(&self) -> LinuxConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LinuxConfig
impl Debug for LinuxConfig
Auto Trait Implementations§
impl Freeze for LinuxConfig
impl RefUnwindSafe for LinuxConfig
impl Send for LinuxConfig
impl Sync for LinuxConfig
impl Unpin for LinuxConfig
impl UnwindSafe for LinuxConfig
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