macro_rules! immutable_attributes {
($requested:expr,
Immutable {$($immut_a:ident: $immut_v:expr),* $(,)?}) => { ... };
}
Expand description
Helper for building fio::NodeAttributes2
given immutable attributes in
requestedCode will only run for
requestedattributes. Mutable attributes in
requested` are ignored.
Example:
immutable_attributes!( requested, Immutable { content_size: 789 } );