pub struct SubApp {
pub is_enabled: bool,
pub is_ready: bool,
pub is_running: bool,
pub metadata: SubAppMetadata,
}Expand description
Sub-application information structure.
Fields§
§is_enabled: bool§is_ready: bool§is_running: bool§metadata: SubAppMetadataTrait Implementations§
Source§impl<'de> Deserialize<'de> for SubApp
impl<'de> Deserialize<'de> for SubApp
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 SubApp
impl RefUnwindSafe for SubApp
impl Send for SubApp
impl Sync for SubApp
impl Unpin for SubApp
impl UnwindSafe for SubApp
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