Macro std

Source
macro_rules! std {
    () => { ... };
    (if { $($p:tt)* } else { $($n:tt)* }) => { ... };
    ($($p:tt)*) => { ... };
}
Expand description

Indicates the std crate is available and can be used.

This macro passes the provided code because #[cfg(feature = "std")] is currently active.