pub struct ApplicationGraph {
pub plugins: Vec<PluginDescriptor>,
pub capabilities: BTreeMap<String, Version>,
pub operations: BTreeMap<String, OperationDescriptor>,
pub migrations: BTreeMap<String, MigrationSet>,
pub health_checks: BTreeMap<String, HealthCheckDescriptor>,
pub resources: BTreeMap<String, ResourceIntent>,
}Fields§
§plugins: Vec<PluginDescriptor>§capabilities: BTreeMap<String, Version>§operations: BTreeMap<String, OperationDescriptor>§migrations: BTreeMap<String, MigrationSet>§health_checks: BTreeMap<String, HealthCheckDescriptor>§resources: BTreeMap<String, ResourceIntent>Trait Implementations§
Source§impl Clone for ApplicationGraph
impl Clone for ApplicationGraph
Source§fn clone(&self) -> ApplicationGraph
fn clone(&self) -> ApplicationGraph
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 ApplicationGraph
impl Debug for ApplicationGraph
Source§impl<'de> Deserialize<'de> for ApplicationGraph
impl<'de> Deserialize<'de> for ApplicationGraph
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 ApplicationGraph
impl RefUnwindSafe for ApplicationGraph
impl Send for ApplicationGraph
impl Sync for ApplicationGraph
impl Unpin for ApplicationGraph
impl UnsafeUnpin for ApplicationGraph
impl UnwindSafe for ApplicationGraph
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