Enum umm::grade::GradescopeOutputFormat
source · pub enum GradescopeOutputFormat {
Text,
Html,
SimpleFormat,
Md,
Ansi,
}
Expand description
Represents output format settings for Gradescope submissions.
Variants§
Text
Plain text format.
Html
HTML format.
SimpleFormat
This is very similar to the “html” format option but will also convert
\n into
and \n\n+ into a page break.
Md
Markdown format.
Ansi
ANSI format for including ANSI escape codes (often used in terminal outputs).
Trait Implementations§
source§impl Debug for GradescopeOutputFormat
impl Debug for GradescopeOutputFormat
source§impl<'de> Deserialize<'de> for GradescopeOutputFormat
impl<'de> Deserialize<'de> for GradescopeOutputFormat
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 RefUnwindSafe for GradescopeOutputFormat
impl Send for GradescopeOutputFormat
impl Sync for GradescopeOutputFormat
impl Unpin for GradescopeOutputFormat
impl UnwindSafe for GradescopeOutputFormat
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