[][src]Struct syn::LitFloat

pub struct LitFloat { /* fields omitted */ }

A floating point literal: 1f64 or 1.0e10f64.

Must be finite. May not be infinte or NaN.

This type is available if Syn is built with the "derive" or "full" feature.

Methods

impl LitFloat
[src]

Trait Implementations

impl Token for LitFloat
[src]

impl Parse for LitFloat
[src]

impl PartialEq<LitFloat> for LitFloat
[src]

This method tests for !=.

impl Clone for LitFloat
[src]

Performs copy-assignment from source. Read more

impl From<LitFloat> for Lit
[src]

impl Eq for LitFloat
[src]

impl Hash for LitFloat
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for LitFloat
[src]

impl ToTokens for LitFloat
[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Send for LitFloat

impl !Sync for LitFloat

Blanket Implementations

impl<K> Token for K where
    K: CustomKeyword, 
[src]

impl<T> Spanned for T where
    T: ToTokens
[src]

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.