pub enum CockpitFormat {
Json,
Md,
Sections,
}Variants§
Json
JSON output with full metrics.
Md
Markdown output for human readability.
Sections
Section-based output for PR template filling.
Trait Implementations§
Source§impl Clone for CockpitFormat
impl Clone for CockpitFormat
Source§fn clone(&self) -> CockpitFormat
fn clone(&self) -> CockpitFormat
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 CockpitFormat
impl Debug for CockpitFormat
Source§impl Default for CockpitFormat
impl Default for CockpitFormat
Source§fn default() -> CockpitFormat
fn default() -> CockpitFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CockpitFormat
impl<'de> Deserialize<'de> for CockpitFormat
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 PartialEq for CockpitFormat
impl PartialEq for CockpitFormat
Source§impl Serialize for CockpitFormat
impl Serialize for CockpitFormat
Source§impl ValueEnum for CockpitFormat
impl ValueEnum for CockpitFormat
impl Copy for CockpitFormat
impl Eq for CockpitFormat
impl StructuralPartialEq for CockpitFormat
Auto Trait Implementations§
impl Freeze for CockpitFormat
impl RefUnwindSafe for CockpitFormat
impl Send for CockpitFormat
impl Sync for CockpitFormat
impl Unpin for CockpitFormat
impl UnsafeUnpin for CockpitFormat
impl UnwindSafe for CockpitFormat
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