pub struct Application {
pub kind: Value,
pub schema_version: String,
pub metadata: Value,
pub contract: Option<Value>,
pub exports: Option<Vec<Value>>,
pub requires: Option<Value>,
pub provisioned_infra: Option<Vec<Value>>,
pub tests: Option<Vec<Value>>,
pub body: Option<Value>,
pub compute: Option<Value>,
}Fields§
§kind: Value§schema_version: String§metadata: Value§contract: Option<Value>§exports: Option<Vec<Value>>§requires: Option<Value>§provisioned_infra: Option<Vec<Value>>§tests: Option<Vec<Value>>§body: Option<Value>§compute: Option<Value>Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
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 Application
impl Debug for Application
Source§impl<'de> Deserialize<'de> for Application
impl<'de> Deserialize<'de> for Application
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 Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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