pub struct Code {
pub type_: Code_,
pub text: String,
pub id: Option<Box<String>>,
pub media_type: Option<Box<String>>,
pub programming_language: Option<Box<String>>,
}
Expand description
Base type for non-executable (e.g. CodeBlock
) and executable (e.g. CodeExpression
) code nodes.
Fields§
§type_: Code_
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 Code
impl<'de> Deserialize<'de> for Code
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 Code
impl RefUnwindSafe for Code
impl Send for Code
impl Sync for Code
impl Unpin for Code
impl UnwindSafe for Code
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