pub struct AppRuntimeLauncher {
pub name: String,
pub description: Option<String>,
pub tags: Vec<String>,
pub metadata: Value,
pub config: StdioServerConfig,
}Expand description
Launch-ready stdio config bundled with app metadata.
Fields§
§name: String§description: Option<String>§metadata: Value§config: StdioServerConfigTrait Implementations§
Source§impl Clone for AppRuntimeLauncher
impl Clone for AppRuntimeLauncher
Source§fn clone(&self) -> AppRuntimeLauncher
fn clone(&self) -> AppRuntimeLauncher
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppRuntimeLauncher
impl Debug for AppRuntimeLauncher
Source§impl From<&AppRuntimeLauncher> for AppRuntimeSummary
impl From<&AppRuntimeLauncher> for AppRuntimeSummary
Source§fn from(launcher: &AppRuntimeLauncher) -> Self
fn from(launcher: &AppRuntimeLauncher) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppRuntimeLauncher
impl RefUnwindSafe for AppRuntimeLauncher
impl Send for AppRuntimeLauncher
impl Sync for AppRuntimeLauncher
impl Unpin for AppRuntimeLauncher
impl UnsafeUnpin for AppRuntimeLauncher
impl UnwindSafe for AppRuntimeLauncher
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