pub struct CodeBlock {
pub type_: CodeBlock_,
pub text: String,
pub id: Option<Box<String>>,
pub media_type: Option<Box<String>>,
pub programming_language: Option<Box<String>>,
}
Expand description
A code block.
Fields§
§type_: CodeBlock_
The name of this type
text: String
The text of the code.
id: Option<Box<String>>
The identifier for this item.
media_type: Option<Box<String>>
Media type, typically expressed using a MIME format, of the code.
programming_language: Option<Box<String>>
The programming language of the code.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CodeBlock
impl<'de> Deserialize<'de> for CodeBlock
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 Freeze for CodeBlock
impl RefUnwindSafe for CodeBlock
impl Send for CodeBlock
impl Sync for CodeBlock
impl Unpin for CodeBlock
impl UnwindSafe for CodeBlock
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