pub struct AddAppRuntimeRequest {
pub name: String,
pub definition: AppRuntimeDefinition,
pub overwrite: bool,
}Expand description
Input for adding or updating an app runtime entry.
Fields§
§name: String§definition: AppRuntimeDefinition§overwrite: boolTrait Implementations§
Source§impl Clone for AddAppRuntimeRequest
impl Clone for AddAppRuntimeRequest
Source§fn clone(&self) -> AddAppRuntimeRequest
fn clone(&self) -> AddAppRuntimeRequest
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 AddAppRuntimeRequest
impl Debug for AddAppRuntimeRequest
Source§impl<'de> Deserialize<'de> for AddAppRuntimeRequest
impl<'de> Deserialize<'de> for AddAppRuntimeRequest
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 PartialEq for AddAppRuntimeRequest
impl PartialEq for AddAppRuntimeRequest
Source§fn eq(&self, other: &AddAppRuntimeRequest) -> bool
fn eq(&self, other: &AddAppRuntimeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddAppRuntimeRequest
impl Serialize for AddAppRuntimeRequest
impl StructuralPartialEq for AddAppRuntimeRequest
Auto Trait Implementations§
impl Freeze for AddAppRuntimeRequest
impl RefUnwindSafe for AddAppRuntimeRequest
impl Send for AddAppRuntimeRequest
impl Sync for AddAppRuntimeRequest
impl Unpin for AddAppRuntimeRequest
impl UnsafeUnpin for AddAppRuntimeRequest
impl UnwindSafe for AddAppRuntimeRequest
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