pub struct CreateAppRawSourceRequestValue {
pub files: HashMap<String, String>,
pub runnables: Option<Value>,
pub data: Option<Value>,
}Expand description
CreateAppRawSourceRequestValue : The raw app’s value. files maps each source path to its content and must contain an entry point; runnables and data are carried through unchanged.
Fields§
§files: HashMap<String, String>§runnables: Option<Value>§data: Option<Value>Implementations§
Trait Implementations§
Source§impl Clone for CreateAppRawSourceRequestValue
impl Clone for CreateAppRawSourceRequestValue
Source§fn clone(&self) -> CreateAppRawSourceRequestValue
fn clone(&self) -> CreateAppRawSourceRequestValue
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 Default for CreateAppRawSourceRequestValue
impl Default for CreateAppRawSourceRequestValue
Source§fn default() -> CreateAppRawSourceRequestValue
fn default() -> CreateAppRawSourceRequestValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateAppRawSourceRequestValue
impl<'de> Deserialize<'de> for CreateAppRawSourceRequestValue
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
impl StructuralPartialEq for CreateAppRawSourceRequestValue
Auto Trait Implementations§
impl Freeze for CreateAppRawSourceRequestValue
impl RefUnwindSafe for CreateAppRawSourceRequestValue
impl Send for CreateAppRawSourceRequestValue
impl Sync for CreateAppRawSourceRequestValue
impl Unpin for CreateAppRawSourceRequestValue
impl UnsafeUnpin for CreateAppRawSourceRequestValue
impl UnwindSafe for CreateAppRawSourceRequestValue
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