pub struct LanguageSupportJson<'a> {Show 15 fields
pub language: &'a str,
pub parser_id: Option<&'a str>,
pub extensions: &'a [&'a str],
pub level: u8,
pub level_label: &'a str,
pub front: &'a str,
pub runtime_boundary: &'a str,
pub example: &'a str,
pub next_step: &'a str,
pub boundary_level: u8,
pub effective_level: u8,
pub evaluated_level: u8,
pub passed_gates: Vec<&'static str>,
pub blocking_gates: Vec<&'static str>,
pub boundary_gates: Vec<&'static str>,
}Fields§
§language: &'a str§parser_id: Option<&'a str>§extensions: &'a [&'a str]§level: u8§level_label: &'a str§front: &'a str§runtime_boundary: &'a str§example: &'a str§next_step: &'a str§boundary_level: u8§effective_level: u8§evaluated_level: u8§passed_gates: Vec<&'static str>§blocking_gates: Vec<&'static str>§boundary_gates: Vec<&'static str>Trait Implementations§
Source§impl<'a> Clone for LanguageSupportJson<'a>
impl<'a> Clone for LanguageSupportJson<'a>
Source§fn clone(&self) -> LanguageSupportJson<'a>
fn clone(&self) -> LanguageSupportJson<'a>
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 moreSource§impl<'a> Debug for LanguageSupportJson<'a>
impl<'a> Debug for LanguageSupportJson<'a>
Auto Trait Implementations§
impl<'a> Freeze for LanguageSupportJson<'a>
impl<'a> RefUnwindSafe for LanguageSupportJson<'a>
impl<'a> Send for LanguageSupportJson<'a>
impl<'a> Sync for LanguageSupportJson<'a>
impl<'a> Unpin for LanguageSupportJson<'a>
impl<'a> UnsafeUnpin for LanguageSupportJson<'a>
impl<'a> UnwindSafe for LanguageSupportJson<'a>
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