pub struct ServiceDefinition {
pub name: String,
pub category: ServiceCategory,
pub prompt: String,
pub options: Vec<String>,
pub required: bool,
pub default: Option<String>,
pub dependencies: Option<Vec<String>>,
pub conflicts: Option<Vec<String>>,
pub language_requirements: Option<Vec<String>>,
pub platform_requirements: Option<Vec<String>>,
pub compatibility_rules: Option<Vec<CompatibilityRule>>,
}Fields§
§name: String§category: ServiceCategory§prompt: String§options: Vec<String>§required: bool§default: Option<String>§dependencies: Option<Vec<String>>§conflicts: Option<Vec<String>>§language_requirements: Option<Vec<String>>§platform_requirements: Option<Vec<String>>§compatibility_rules: Option<Vec<CompatibilityRule>>Trait Implementations§
Source§impl Clone for ServiceDefinition
impl Clone for ServiceDefinition
Source§fn clone(&self) -> ServiceDefinition
fn clone(&self) -> ServiceDefinition
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 ServiceDefinition
impl Debug for ServiceDefinition
Source§impl<'de> Deserialize<'de> for ServiceDefinition
impl<'de> Deserialize<'de> for ServiceDefinition
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 ServiceDefinition
impl RefUnwindSafe for ServiceDefinition
impl Send for ServiceDefinition
impl Sync for ServiceDefinition
impl Unpin for ServiceDefinition
impl UnwindSafe for ServiceDefinition
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