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.

Windows: foobar -> foobar.dll
Linux:   foobar -> libfoobar.so
Mac:     foobar -> libfoobar.dylib

Trait Implementations

impl PartialEq for PlatformName
[src]

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

This method tests for !=.