struct CuConfigRepresentation {
tasks: Option<Vec<Node>>,
resources: Option<Vec<ResourceBundleConfig>>,
bridges: Option<Vec<BridgeConfig>>,
cnx: Option<Vec<SerializedCnx>>,
monitors: Option<Vec<MonitorConfig>>,
logging: Option<LoggingConfig>,
runtime: Option<RuntimeConfig>,
missions: Option<Vec<MissionsConfig>>,
includes: Option<Vec<IncludesConfig>>,
}Expand description
This is the main Copper configuration representation.
Fields§
§tasks: Option<Vec<Node>>§resources: Option<Vec<ResourceBundleConfig>>§bridges: Option<Vec<BridgeConfig>>§cnx: Option<Vec<SerializedCnx>>§monitors: Option<Vec<MonitorConfig>>§logging: Option<LoggingConfig>§runtime: Option<RuntimeConfig>§missions: Option<Vec<MissionsConfig>>§includes: Option<Vec<IncludesConfig>>Trait Implementations§
Source§impl Default for CuConfigRepresentation
impl Default for CuConfigRepresentation
Source§fn default() -> CuConfigRepresentation
fn default() -> CuConfigRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CuConfigRepresentation
impl<'de> Deserialize<'de> for CuConfigRepresentation
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 CuConfigRepresentation
impl RefUnwindSafe for CuConfigRepresentation
impl Send for CuConfigRepresentation
impl Sync for CuConfigRepresentation
impl Unpin for CuConfigRepresentation
impl UnsafeUnpin for CuConfigRepresentation
impl UnwindSafe for CuConfigRepresentation
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.