pub enum DescribeFormat {
Text,
Json,
SkillMd,
}Expand description
Output format for agent describe.
Variants§
Text
Structured plain text.
Json
Canonical JSON.
SkillMd
Markdown skill artifact (SKILL.md body) with frontmatter.
Trait Implementations§
Source§impl Clone for DescribeFormat
impl Clone for DescribeFormat
Source§fn clone(&self) -> DescribeFormat
fn clone(&self) -> DescribeFormat
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 moreimpl Copy for DescribeFormat
Source§impl Debug for DescribeFormat
impl Debug for DescribeFormat
impl Eq for DescribeFormat
Source§impl PartialEq for DescribeFormat
impl PartialEq for DescribeFormat
Source§fn eq(&self, other: &DescribeFormat) -> bool
fn eq(&self, other: &DescribeFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeFormat
Source§impl ValueEnum for DescribeFormat
impl ValueEnum for DescribeFormat
Source§fn value_variants<'a>() -> &'a [DescribeFormat]
fn value_variants<'a>() -> &'a [DescribeFormat]
All possible argument values, in display order.
Source§fn to_possible_value<'a>(&self) -> Option<PossibleValue>
fn to_possible_value<'a>(&self) -> Option<PossibleValue>
The canonical argument value. Read more
Auto Trait Implementations§
impl Freeze for DescribeFormat
impl RefUnwindSafe for DescribeFormat
impl Send for DescribeFormat
impl Sync for DescribeFormat
impl Unpin for DescribeFormat
impl UnsafeUnpin for DescribeFormat
impl UnwindSafe for DescribeFormat
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