[][src]Enum xc2bit::XC2Device

pub enum XC2Device {
    XC2C32,
    XC2C32A,
    XC2C64,
    XC2C64A,
    XC2C128,
    XC2C256,
    XC2C384,
    XC2C512,
}

Coolrunner-II devices

Variants

XC2C32
XC2C32A
XC2C64
XC2C64A
XC2C128
XC2C256
XC2C384
XC2C512

Methods

impl XC2Device[src]

pub fn num_fbs(&self) -> usize[src]

Returns the number of function blocks for the device type

pub fn num_iobs(&self) -> usize[src]

Returns the number of I/O pins for the device type

pub fn is_small_iob(&self) -> bool[src]

pub fn is_large_iob(&self) -> bool[src]

Trait Implementations

impl Clone for XC2Device[src]

impl Copy for XC2Device[src]

impl Debug for XC2Device[src]

impl<'de> Deserialize<'de> for XC2Device[src]

impl Display for XC2Device[src]

impl Eq for XC2Device[src]

impl PartialEq<XC2Device> for XC2Device[src]

impl Serialize for XC2Device[src]

impl StructuralEq for XC2Device[src]

impl StructuralPartialEq for XC2Device[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.