pub struct ParsedIntBuilder { /* private fields */ }
Expand description
A utility builder struct for parsing integers.
Implementations§
Trait Implementations§
Source§impl Debug for ParsedIntBuilder
impl Debug for ParsedIntBuilder
Source§impl Default for ParsedIntBuilder
impl Default for ParsedIntBuilder
Source§fn default() -> ParsedIntBuilder
fn default() -> ParsedIntBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParsedIntBuilder
impl RefUnwindSafe for ParsedIntBuilder
impl Send for ParsedIntBuilder
impl Sync for ParsedIntBuilder
impl Unpin for ParsedIntBuilder
impl UnwindSafe for ParsedIntBuilder
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
Source§impl<T> Convert for T
impl<T> Convert for T
Source§fn convert<U>(self, context: &CompileContext) -> Expr<U>where
U: ConvertFrom<T>,
fn convert<U>(self, context: &CompileContext) -> Expr<U>where
U: ConvertFrom<T>,
Convert
self
into a specific type. Read moreSource§fn can_convert<U>(&self) -> boolwhere
U: ConvertFrom<T>,
fn can_convert<U>(&self) -> boolwhere
U: ConvertFrom<T>,
Check if
self
can be converted into a specific type. Read more