pub struct InstallArgs {
pub common: CommonArgs,
pub port: u16,
pub profile: Option<String>,
pub shm_size: Option<String>,
pub takeover_provider: Takeover,
pub with: Vec<String>,
pub rebuild: bool,
pub from_source: bool,
pub context: Option<String>,
pub host_args: Vec<String>,
pub reveal_token_secret: bool,
}Fields§
§common: CommonArgs§port: u16§profile: Option<String>§shm_size: Option<String>§takeover_provider: Takeover§with: Vec<String>§rebuild: boolOnly the release shape carries this: a from-source build always
recompiles, so the registry does not accept a redundant --rebuild.
from_source: bool§context: Option<String>Only the from-source shape carries this.
host_args: Vec<String>§reveal_token_secret: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for InstallArgs
impl RefUnwindSafe for InstallArgs
impl Send for InstallArgs
impl Sync for InstallArgs
impl Unpin for InstallArgs
impl UnsafeUnpin for InstallArgs
impl UnwindSafe for InstallArgs
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