pub enum Platform {
LinuxX86_64,
LinuxAarch64,
MacOSX86_64,
MacOSAarch64,
WindowsX86_64,
}Expand description
Supported platforms for binary releases.
Variants§
LinuxX86_64
Linux x86_64.
LinuxAarch64
Linux aarch64 (ARM64).
MacOSX86_64
macOS x86_64 (Intel).
MacOSAarch64
macOS aarch64 (Apple Silicon).
WindowsX86_64
Windows x86_64.
Implementations§
Trait Implementations§
impl Copy for Platform
impl Eq for Platform
impl StructuralPartialEq for Platform
Auto Trait Implementations§
impl Freeze for Platform
impl RefUnwindSafe for Platform
impl Send for Platform
impl Sync for Platform
impl Unpin for Platform
impl UnsafeUnpin for Platform
impl UnwindSafe for Platform
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