[][src]Enum xc2bit::XC2IOBOBufMode

pub enum XC2IOBOBufMode {
    Disabled,
    PushPull,
    OpenDrain,
    TriStateGTS0,
    TriStateGTS1,
    TriStateGTS2,
    TriStateGTS3,
    TriStatePTB,
    TriStateCTE,
    CGND,
}

Mode selection for the I/O pin's output buffer. See the Xilinx Coolrunner-II documentation for more information.

Variants

Disabled
PushPull
OpenDrain
TriStateGTS0
TriStateGTS1
TriStateGTS2
TriStateGTS3
TriStatePTB
TriStateCTE
CGND

Methods

impl XC2IOBOBufMode[src]

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

impl XC2IOBOBufMode[src]

Trait Implementations

impl Clone for XC2IOBOBufMode[src]

impl Copy for XC2IOBOBufMode[src]

impl Debug for XC2IOBOBufMode[src]

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

impl Eq for XC2IOBOBufMode[src]

impl Hash for XC2IOBOBufMode[src]

impl PartialEq<XC2IOBOBufMode> for XC2IOBOBufMode[src]

impl Serialize for XC2IOBOBufMode[src]

impl StructuralEq for XC2IOBOBufMode[src]

impl StructuralPartialEq for XC2IOBOBufMode[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, 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.