Enum dynamic_reload::PlatformName [] [src]

pub enum PlatformName {
    No,
    Yes,
}

This is used to decide how the name used for add_library is to be handled.

Variants

Leave name as is and don't do any formating.

Format the name according to standard shared library name on the platform.

Be careful when using this code, it's not being tested!
Windows: foobar -> foobar.dll
Linux:   foobar -> libfoobar.so
Mac:     foobar -> libfoobar.dylib

Trait Implementations

impl PartialEq for PlatformName
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.