[][src]Struct zju_jw_parser::TotalCreditPage

pub struct TotalCreditPage {
    pub credit: f32,
}

Fields

credit: f32

Trait Implementations

impl FromHtml for TotalCreditPage[src]

fn from_selector_and_attr(
    selector_str: &str,
    attr: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_selector_and_inner_text(
    selector_str: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_selector_and_html(
    selector_str: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_attr(attr: &str, elem_ref: ElementRef) -> Result<Self, Error>[src]

Examples Read more

fn from_inner_text(elem_ref: ElementRef) -> Result<Self, Error>[src]

Examples Read more

fn from_html(html: &str) -> Result<Self, Error>[src]

implemented by default for all types that implemented FromStr<Err=E> where E: std::error::Error # Examples use unhtml::FromHtml; let result = u8::from_html("1").unwrap(); assert_eq!(1u8, result); Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E, T> FromHtml for T where
    E: Fail,
    T: FromStr<Err = E>, 
[src]

fn from_selector_and_attr(
    selector_str: &str,
    attr: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_selector_and_inner_text(
    selector_str: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_selector_and_html(
    selector_str: &str,
    elem_ref: ElementRef
) -> Result<Self, Error>
[src]

Examples Read more

fn from_attr(attr: &str, elem_ref: ElementRef) -> Result<Self, Error>[src]

Examples Read more

fn from_inner_text(elem_ref: ElementRef) -> Result<Self, Error>[src]

Examples Read more