#[non_exhaustive]pub enum TypesIntentKind {
GrowthStrategy,
Scheduling,
ResourceOptimization,
RiskAssessment,
ContentGeneration,
Custom,
}Expand description
Kind of intent (what problem class).
Uses “Types” prefix to avoid collision with existing IntentKind.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GrowthStrategy
Growth strategy development.
Scheduling
Scheduling optimization.
ResourceOptimization
Resource optimization.
RiskAssessment
Risk assessment.
ContentGeneration
Content generation.
Custom
Custom intent kind.
Trait Implementations§
Source§impl Clone for TypesIntentKind
impl Clone for TypesIntentKind
Source§fn clone(&self) -> TypesIntentKind
fn clone(&self) -> TypesIntentKind
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 TypesIntentKind
impl Debug for TypesIntentKind
Source§impl Default for TypesIntentKind
impl Default for TypesIntentKind
Source§fn default() -> TypesIntentKind
fn default() -> TypesIntentKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TypesIntentKind
impl<'de> Deserialize<'de> for TypesIntentKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TypesIntentKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TypesIntentKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for TypesIntentKind
impl Hash for TypesIntentKind
Source§impl PartialEq for TypesIntentKind
impl PartialEq for TypesIntentKind
Source§fn eq(&self, other: &TypesIntentKind) -> bool
fn eq(&self, other: &TypesIntentKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TypesIntentKind
impl Serialize for TypesIntentKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for TypesIntentKind
impl Eq for TypesIntentKind
impl StructuralPartialEq for TypesIntentKind
Auto Trait Implementations§
impl Freeze for TypesIntentKind
impl RefUnwindSafe for TypesIntentKind
impl Send for TypesIntentKind
impl Sync for TypesIntentKind
impl Unpin for TypesIntentKind
impl UnsafeUnpin for TypesIntentKind
impl UnwindSafe for TypesIntentKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.