Macro bitfield::bitfield_fields [] [src]

macro_rules! bitfield_fields {
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, _, $setter:ident: $msb:expr, $lsb:expr,
     $count:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, _, $setter:ident: $msb:expr, $lsb:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, _, $setter:ident: $bit:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, $getter:ident, _: $msb:expr, $lsb:expr,
     $count:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, $getter:ident, _: $msb:expr, $lsb:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, $getter:ident, _: $bit:expr) => { ... };
    (@field $(#[$attribute:meta])* ($($vis:tt)*) $t:ty, $getter:ident, $setter:ident:
     $($exprs:expr),*) => { ... };
    ($t:ty;) => { ... };
    ($default_ty:ty; pub $($rest:tt)*) => { ... };
    ($default_ty:ty; #[$attribute:meta] $($rest:tt)*) => { ... };
    ($default_ty:ty; ($(#[$attributes:meta])*) #[$attribute:meta] $($rest:tt)*) => { ... };
    ($default_ty:ty; ($(#[$attribute:meta])*) pub $t:ty, $getter:tt, $setter:tt:  $($exprs:expr),*;
     $($rest:tt)*) => { ... };
    ($default_ty:ty; ($(#[$attribute:meta])*) pub $getter:tt, $setter:tt:  $($exprs:expr),*;
     $($rest:tt)*) => { ... };
    ($default_ty:ty; ($(#[$attribute:meta])*) $t:ty, $getter:tt, $setter:tt:  $($exprs:expr),*;
     $($rest:tt)*) => { ... };
    ($default_ty:ty; ($(#[$attribute:meta])*) $getter:tt, $setter:tt:  $($exprs:expr),*;
     $($rest:tt)*) => { ... };
    ($previous_default_ty:ty; $default_ty:ty; $($rest:tt)*) => { ... };
    ($default_ty:ty; $($rest:tt)*) => { ... };
    ($($rest:tt)*) => { ... };
}

Declares the fields of struct.

This macro will generate the methods to access the fields of a bitfield. It must be called from an impl block for a type that implements the BitRange and/or the Bit traits (which traits are required depending on what type of fields are used).

The syntax of this macro is composed of declarations ended by semicolons. There are two types of delcarations: default type, and fields.

A default type is just a type followed by a semicolon. This will affect all the following field declarations.

A field declaration is composed of the following:

The attributes and pub will be applied to the two methods generated.

The getter and setter idents can be _ to not generate one of the two. For example, if the setter is _, the field will be read-only.

The expressions at the end are the bit positions. Their meaning depends on the number of expressions:

Example

bitfield_fields!{
    // The default type will be `u64
    u64;
    // filed1 is read-write, public, the methods are inline
    #[inline]
    pub field1, set_field1: 10, 0;
    // `field2` is  read-only, private, and of type bool.
    field2, _ : 0;
}