pub struct CodeFragment {
pub type_: CodeFragment_,
pub text: String,
pub id: Option<Box<String>>,
pub media_type: Option<Box<String>>,
pub programming_language: Option<Box<String>>,
}
Expand description
Inline code.
Fields§
§type_: CodeFragment_
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 Clone for CodeFragment
impl Clone for CodeFragment
Source§fn clone(&self) -> CodeFragment
fn clone(&self) -> CodeFragment
Returns a copy 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 CodeFragment
impl Debug for CodeFragment
Source§impl Default for CodeFragment
impl Default for CodeFragment
Source§impl<'de> Deserialize<'de> for CodeFragmentwhere
CodeFragment: Default,
impl<'de> Deserialize<'de> for CodeFragmentwhere
CodeFragment: Default,
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 CodeFragment
impl RefUnwindSafe for CodeFragment
impl Send for CodeFragment
impl Sync for CodeFragment
impl Unpin for CodeFragment
impl UnwindSafe for CodeFragment
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