pub struct LitInt { /* fields omitted */ }
Expand description
An integer literal: 1 or 1u16.
Parses the literal into a selected number type.
This is equivalent to lit.base10_digits().parse() except that the
resulting errors will be correctly spanned to point to the literal token
in the macro input.
use syn::LitInt;
use syn::parse::{Parse, ParseStream, Result};
struct Port {
value: u16,
}
impl Parse for Port {
fn parse(input: ParseStream) -> Result<Self> {
let lit: LitInt = input.parse()?;
let value = lit.base10_parse::<u16>()?;
Ok(Port { value })
}
}
This is supported on crate feature clone-impls only.
Performs copy-assignment from source. Read more
This is supported on crate feature extra-traits only.
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
This is supported on crate feature extra-traits only.
This is supported on crate feature parsing only.
This is supported on crate feature extra-traits only.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This is supported on crate feature printing only.
Write self to the given TokenStream. Read more
Convert self directly into a TokenStream object. Read more
Convert self directly into a TokenStream object. Read more
This is supported on crate feature extra-traits only.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
This is supported on crate features parsing and printing only.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.