pub struct DeployAppVersion {Show 13 fields
    pub id: Id,
    pub created_at: DateTime,
    pub updated_at: DateTime,
    pub version: String,
    pub description: Option<String>,
    pub yaml_config: String,
    pub user_yaml_config: String,
    pub config: String,
    pub json_config: String,
    pub url: String,
    pub disabled_at: Option<DateTime>,
    pub disabled_reason: Option<String>,
    pub app: Option<SparseDeployApp>,
}Fields§
§id: Id§created_at: DateTime§updated_at: DateTime§version: String§description: Option<String>§yaml_config: String§user_yaml_config: String§config: String§json_config: String§url: String§disabled_at: Option<DateTime>§disabled_reason: Option<String>§app: Option<SparseDeployApp>Trait Implementations§
Source§impl Clone for DeployAppVersion
 
impl Clone for DeployAppVersion
Source§fn clone(&self) -> DeployAppVersion
 
fn clone(&self) -> DeployAppVersion
Returns a copy 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 DeployAppVersion
 
impl Debug for DeployAppVersion
Source§impl<'de> Deserialize<'de> for DeployAppVersion
 
impl<'de> Deserialize<'de> for DeployAppVersion
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 QueryFragment for DeployAppVersion
 
impl QueryFragment for DeployAppVersion
Source§type SchemaType = DeployAppVersion
 
type SchemaType = DeployAppVersion
The type in a schema that this 
QueryFragment representsSource§type VariablesFields = ()
 
type VariablesFields = ()
The variables that are required to execute this 
QueryFragmentSource§fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
 
fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
Adds this fragment to the query being built by 
builderAuto Trait Implementations§
impl Freeze for DeployAppVersion
impl RefUnwindSafe for DeployAppVersion
impl Send for DeployAppVersion
impl Sync for DeployAppVersion
impl Unpin for DeployAppVersion
impl UnwindSafe for DeployAppVersion
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