lazy_static::lazy_static! [] [src]

macro_rules! lazy_static {
    ($(#[$attr:meta])* static ref $N:ident : $T:ty = $e:expr; $($t:tt)*) => { ... };
    ($(#[$attr:meta])* pub static ref $N:ident : $T:ty = $e:expr; $($t:tt)*) => { ... };
    ($VIS:ident, $(#[$attr:meta])* static ref $N:ident : $T:ty = $e:expr; $($t:tt)*) => { ... };
    (MAKE TY, PUB, $(#[$attr:meta])*, $N:ident) => { ... };
    (MAKE TY, PRIV, $(#[$attr:meta])*, $N:ident) => { ... };
    () => { ... };
}