[][src]Macro wayfinder::header

macro_rules! header {
    (
        $($tokens:item)*
    ) => { ... };
}

Create a Header, for instance to use a data type.

let import_uuid = header!(
    use uuid::Uuid;
);