pub enum IntegerValue<'ast> {
Signed(SignedIntegerValue<'ast>),
Unsigned(UnsignedIntegerValue<'ast>),
}
Variants§
Signed(SignedIntegerValue<'ast>)
Unsigned(UnsignedIntegerValue<'ast>)
Implementations§
Trait Implementations§
Source§impl<'ast> Clone for IntegerValue<'ast>
impl<'ast> Clone for IntegerValue<'ast>
Source§fn clone(&self) -> IntegerValue<'ast>
fn clone(&self) -> IntegerValue<'ast>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'ast> Debug for IntegerValue<'ast>
impl<'ast> Debug for IntegerValue<'ast>
Source§impl<'ast> Display for IntegerValue<'ast>
impl<'ast> Display for IntegerValue<'ast>
Source§impl<'ast> FromPest<'ast> for IntegerValue<'ast>
impl<'ast> FromPest<'ast> for IntegerValue<'ast>
Source§impl<'ast> PartialEq for IntegerValue<'ast>
impl<'ast> PartialEq for IntegerValue<'ast>
impl<'ast> Eq for IntegerValue<'ast>
impl<'ast> StructuralPartialEq for IntegerValue<'ast>
Auto Trait Implementations§
impl<'ast> Freeze for IntegerValue<'ast>
impl<'ast> RefUnwindSafe for IntegerValue<'ast>
impl<'ast> Send for IntegerValue<'ast>
impl<'ast> Sync for IntegerValue<'ast>
impl<'ast> Unpin for IntegerValue<'ast>
impl<'ast> UnwindSafe for IntegerValue<'ast>
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