nil-util-macros 0.6.7

Multiplayer strategy game
Documentation
// Copyright (C) Call of Nil contributors
// SPDX-License-Identifier: AGPL-3.0-only

pub mod big_int;
pub mod deref;
pub mod f64;

use syn::{Data, DeriveInput, Fields, Ident, Type};

fn get_tuple_struct_inner_ident(ast: &DeriveInput) -> &Ident {
  if let Data::Struct(r#struct) = &ast.data
    && let Fields::Unnamed(fields) = &r#struct.fields
    && let Some(field) = fields.unnamed.first()
    && let Type::Path(ty_path) = &field.ty
    && let Some(ident) = ty_path.path.get_ident()
  {
    ident
  } else {
    panic!("inner ident not found");
  }
}