Macro daemon::declare_singleton [] [src]

macro_rules! declare_singleton {
    (
		$name: ident, // Function name
		$t: ty, // Embedded type
		$init: expr // Initial value
	) => { ... };
}