pub enum IntegerType {
SignedInt(SignedInt),
UnsignedInt(UnsignedInt),
}Variants§
SignedInt(SignedInt)
UnsignedInt(UnsignedInt)
Trait Implementations§
Source§impl Debug for IntegerType
impl Debug for IntegerType
Source§impl<'de> Deserialize<'de> for IntegerType
impl<'de> Deserialize<'de> for IntegerType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<IntegerType> for IntegerType
impl From<IntegerType> for IntegerType
Source§fn from(value: IntegerType) -> Self
fn from(value: IntegerType) -> Self
Converts to this type from the input type.
Source§impl<'a> FromTreeSitter<'a> for IntegerType
impl<'a> FromTreeSitter<'a> for IntegerType
fn from_node(node: Node<'a>, ctx: &mut ParseContext<'a>) -> ParserResult<Self>
Auto Trait Implementations§
impl Freeze for IntegerType
impl RefUnwindSafe for IntegerType
impl Send for IntegerType
impl Sync for IntegerType
impl Unpin for IntegerType
impl UnsafeUnpin for IntegerType
impl UnwindSafe for IntegerType
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