XdotRS/xrb

Semicolon after definition

Closed this issue · 1 comments

/// A definition, as defined with the [`define!`] macro.
///
/// [`define!`]: crate::define
pub struct Definition {
/// The metadata associated with the definition.
///
/// This defines the type of definition (i.e. enum, struct, event, request,
/// or reply), as well as the additional information and tokens that starts
/// that definition (`enum`, `struct`, the name, generics, the major opcode
/// of a request, etc.).
pub metadata: Metadata,
/// The items defined within the definition.
///
/// This is the main feature of the [`define!`] macro: it's what allows
/// additional serialization and deserialization code to be generated in a
/// more concise way than could be achieved with a derive macro.
pub items: Items,
}

There needs to be a semicolon after a unit or tuple struct (Items::Unit or Items::Unnamed), but not after an enum or a 'normal struct' (Enum or Items::Named).

e.g.

pub struct UnitStruct; /* semicolon */

pub struct TupleStruct(u32, u32); /* semicolon */

pub struct NormalStruct {
    field1: u32,
    field1: u32,
} /* no semicolon */

pub enum Enum {
    UnitVariant, /* no semicolon */
    TupleVariant(u32, u32), /* no semicolon */
    StructVariant {
        field1: u32,
        field1: u32,
    }, /* no semicolon */
} /* no semicolon */

Completed (long ago...)