pub struct Language {
pub name: &'static str,
pub extensions: &'static [&'static str],
pub aliases: &'static [&'static str],
}Expand description
One language family: canonical name, filename extensions, documented
value aliases (rs reads as rust).
Fields§
§name: &'static str§extensions: &'static [&'static str]§aliases: &'static [&'static str]Auto Trait Implementations§
impl Freeze for Language
impl RefUnwindSafe for Language
impl Send for Language
impl Sync for Language
impl Unpin for Language
impl UnsafeUnpin for Language
impl UnwindSafe for Language
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