collenchyma 0.0.8

high-performance computation on any hardware
Documentation
//! Provides a binary on native CPU.

use binary::IBinary;

#[derive(Debug, Copy, Clone)]
/// Defines a host CPU binary.
pub struct Binary {
    id: isize,
}

impl Binary {
    /// Initializes the native CPU binary.
    pub fn new() -> Binary {
        Binary {
            id: 0,
        }
    }
}

impl IBinary for Binary {}