pub struct ADecimal<'a> {
pub raw_integral: &'a str,
pub raw_fractional: &'a str,
}
Expand description
Decimal Number (e.g. 1.3
)
Fields§
§raw_integral: &'a str
§raw_fractional: &'a str
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ADecimal<'a>
impl<'a> RefUnwindSafe for ADecimal<'a>
impl<'a> Send for ADecimal<'a>
impl<'a> Sync for ADecimal<'a>
impl<'a> Unpin for ADecimal<'a>
impl<'a> UnwindSafe for ADecimal<'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