pub struct DevGraph {
pub application: String,
pub environment: String,
pub compose_file: String,
pub database: DevDatabase,
pub local_aws_services: Vec<String>,
pub api: ProcessConfig,
pub workers: Vec<ProcessConfig>,
pub frontend: Option<ProcessConfig>,
pub migration: Option<CommandSpec>,
pub seeds: BTreeMap<String, CommandSpec>,
pub schedules: Vec<String>,
}Fields§
§application: String§environment: String§compose_file: String§database: DevDatabase§local_aws_services: Vec<String>§api: ProcessConfig§workers: Vec<ProcessConfig>§frontend: Option<ProcessConfig>§migration: Option<CommandSpec>§seeds: BTreeMap<String, CommandSpec>§schedules: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for DevGraph
impl<'de> Deserialize<'de> for DevGraph
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 Eq for DevGraph
impl StructuralPartialEq for DevGraph
Auto Trait Implementations§
impl Freeze for DevGraph
impl RefUnwindSafe for DevGraph
impl Send for DevGraph
impl Sync for DevGraph
impl Unpin for DevGraph
impl UnsafeUnpin for DevGraph
impl UnwindSafe for DevGraph
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