Enum Modules
pub enum Modules {
Linux(Module),
Windows(Module),
Android(Module),
Osx(Module),
}Expand description
Enum for the modules whose value depends on the current platform
Variants§
Linux(Module)
A Linux module
Windows(Module)
A Windows module
Android(Module)
An Android module
Osx(Module)
An OSX module
Trait Implementations§
Auto Trait Implementations§
impl !Send for Modules
impl !Sync for Modules
impl Freeze for Modules
impl RefUnwindSafe for Modules
impl Unpin for Modules
impl UnsafeUnpin for Modules
impl UnwindSafe for Modules
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more