pub struct EmbeddedGrammarFormalization {
pub language: String,
pub line_count: usize,
pub statement_count: usize,
pub meta_language: Option<MetaLanguageFormalization>,
}Expand description
A fenced code block or other embedded grammar inside a Markdown file.
Fields§
§language: String§line_count: usize§statement_count: usize§meta_language: Option<MetaLanguageFormalization>Trait Implementations§
Source§impl Clone for EmbeddedGrammarFormalization
impl Clone for EmbeddedGrammarFormalization
Source§fn clone(&self) -> EmbeddedGrammarFormalization
fn clone(&self) -> EmbeddedGrammarFormalization
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EmbeddedGrammarFormalization
impl RefUnwindSafe for EmbeddedGrammarFormalization
impl Send for EmbeddedGrammarFormalization
impl Sync for EmbeddedGrammarFormalization
impl Unpin for EmbeddedGrammarFormalization
impl UnsafeUnpin for EmbeddedGrammarFormalization
impl UnwindSafe for EmbeddedGrammarFormalization
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