Struct clippy_utils::numeric_literal::NumericLiteral
source · pub struct NumericLiteral<'a> {
pub radix: Radix,
pub prefix: Option<&'a str>,
pub integer: &'a str,
pub fraction: Option<&'a str>,
pub exponent: Option<(&'a str, &'a str)>,
pub suffix: Option<&'a str>,
}
Fields§
§radix: Radix
Which radix the literal was represented in.
prefix: Option<&'a str>
The radix prefix, if present.
integer: &'a str
The integer part of the number.
fraction: Option<&'a str>
The fraction part of the number.
exponent: Option<(&'a str, &'a str)>
The exponent separator (b’e’ or b’E’) including preceding underscore if present and the exponent part.
suffix: Option<&'a str>
The type suffix, including preceding underscore if present.
Implementations§
source§impl<'a> NumericLiteral<'a>
impl<'a> NumericLiteral<'a>
pub fn from_lit_kind( src: &'a str, lit_kind: &LitKind ) -> Option<NumericLiteral<'a>>
pub fn new(lit: &'a str, suffix: Option<&'a str>, float: bool) -> Self
pub fn is_decimal(&self) -> bool
pub fn split_digit_parts( digits: &str, float: bool ) -> (&str, Option<&str>, Option<(&str, &str)>)
pub fn group_digits( output: &mut String, input: &str, group_size: usize, partial_group_first: bool, pad: bool )
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for NumericLiteral<'a>
impl<'a> Send for NumericLiteral<'a>
impl<'a> Sync for NumericLiteral<'a>
impl<'a> Unpin for NumericLiteral<'a>
impl<'a> UnwindSafe for NumericLiteral<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 104 bytes