[][src]Struct hyperpolyglot::Language

pub struct Language {
    pub name: &'static str,
    pub language_type: LanguageType,
    pub color: Option<&'static str>,
    pub group: Option<&'static str>,
}

The language struct that contains the name and other interesting information about a language.

Examples

use hyperpolyglot::{Language, LanguageType};
use std::convert::TryFrom;

let language = Language::try_from("Rust").unwrap();
let expected = Language {
    name: "Rust",
    language_type: LanguageType::Programming,
    color: Some("#dea584"),
    group: None,
};
assert_eq!(language, expected)

Errors

try_from will error if the langauge name is not one of the known languages

If try_from is called with a language returned from detect or get_language_breakdown the value is guaranteed to be there and can be unwrapped

Fields

name: &'static str

The name of the language

language_type: LanguageType

Type of language. ex/ Data, Programming, Markup, Prose

color: Option<&'static str>

The css hex color used to represent the language on github. ex/ #dea584

group: Option<&'static str>

Name of the parent language. ex/ The group for TSX would be TypeScript

Trait Implementations

impl Clone for Language[src]

impl Copy for Language[src]

impl Debug for Language[src]

impl Eq for Language[src]

impl PartialEq<Language> for Language[src]

impl StructuralEq for Language[src]

impl StructuralPartialEq for Language[src]

impl<'_> TryFrom<&'_ str> for Language[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,