pub enum ProposalKind {
Claims,
Plan,
Classification,
Evaluation,
DraftDocument,
Reasoning,
}Expand description
The kind of proposal a kernel is making.
This taxonomy helps the engine understand what kind of validation and promotion logic to apply.
Variants§
Claims
Claims or assertions derived from reasoning
Plan
An action plan with ordered steps
Classification
A classification or categorization
Evaluation
An evaluation with scores and justification
DraftDocument
A draft document or text artifact
Reasoning
Raw reasoning output (when no specific kind applies)
Trait Implementations§
Source§impl Clone for ProposalKind
impl Clone for ProposalKind
Source§fn clone(&self) -> ProposalKind
fn clone(&self) -> ProposalKind
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 ProposalKind
impl Debug for ProposalKind
Source§impl Default for ProposalKind
impl Default for ProposalKind
Source§impl<'de> Deserialize<'de> for ProposalKind
impl<'de> Deserialize<'de> for ProposalKind
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
Source§impl From<ContentKind> for ProposalKind
impl From<ContentKind> for ProposalKind
Source§fn from(kind: ContentKind) -> Self
fn from(kind: ContentKind) -> Self
Converts to this type from the input type.
Source§impl Hash for ProposalKind
impl Hash for ProposalKind
Source§impl PartialEq for ProposalKind
impl PartialEq for ProposalKind
Source§impl Serialize for ProposalKind
impl Serialize for ProposalKind
impl Copy for ProposalKind
impl Eq for ProposalKind
impl StructuralPartialEq for ProposalKind
Auto Trait Implementations§
impl Freeze for ProposalKind
impl RefUnwindSafe for ProposalKind
impl Send for ProposalKind
impl Sync for ProposalKind
impl Unpin for ProposalKind
impl UnwindSafe for ProposalKind
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