Struct standalone_syn::LitFloat [] [src]

pub struct LitFloat {
    pub span: Span,
    // some 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.

Fields

Methods

impl LitFloat
[src]

[src]

[src]

[src]

Trait Implementations

impl Synom for LitFloat
[src]

[src]

[src]

impl ToTokens for LitFloat
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Debug for LitFloat
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LitFloat
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<LitFloat> for Lit
[src]

[src]

Performs the conversion.

impl Eq for LitFloat
[src]

impl PartialEq for LitFloat
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Hash for LitFloat
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

Auto Trait Implementations

impl Send for LitFloat

impl Sync for LitFloat