pub struct AppRuntimeEntry {
pub name: String,
pub definition: AppRuntimeDefinition,
}Expand description
App runtime definition coupled with its name.
Fields§
§name: String§definition: AppRuntimeDefinitionTrait Implementations§
Source§impl Clone for AppRuntimeEntry
impl Clone for AppRuntimeEntry
Source§fn clone(&self) -> AppRuntimeEntry
fn clone(&self) -> AppRuntimeEntry
Returns a duplicate 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 AppRuntimeEntry
impl Debug for AppRuntimeEntry
Source§impl<'de> Deserialize<'de> for AppRuntimeEntry
impl<'de> Deserialize<'de> for AppRuntimeEntry
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
Source§impl From<AppRuntimeEntry> for AppRuntime
impl From<AppRuntimeEntry> for AppRuntime
Source§fn from(entry: AppRuntimeEntry) -> Self
fn from(entry: AppRuntimeEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AppRuntimeEntry
impl PartialEq for AppRuntimeEntry
Source§impl Serialize for AppRuntimeEntry
impl Serialize for AppRuntimeEntry
impl StructuralPartialEq for AppRuntimeEntry
Auto Trait Implementations§
impl Freeze for AppRuntimeEntry
impl RefUnwindSafe for AppRuntimeEntry
impl Send for AppRuntimeEntry
impl Sync for AppRuntimeEntry
impl Unpin for AppRuntimeEntry
impl UnsafeUnpin for AppRuntimeEntry
impl UnwindSafe for AppRuntimeEntry
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