psp-net 0.6.6

Networking library for the Sony PSP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Utility macro used internally to allow optional parameters
/// in macros.
///
/// This macro is not intended to be used directly.
#[macro_export]
macro_rules! some_or_none {
    () => {
        None
    };
    ($entity:expr) => {
        Some($entity)
    };
}