Struct xc2bit::XC2BitstreamFB [] [src]

pub struct XC2BitstreamFB {
    pub or_terms: [XC2PLAOrTerm; 16],
    pub mcs: [XC2Macrocell; 16],
    // some fields omitted
}

Represents a collection of all the parts that make up one function block

Fields

The OR terms of the PLA part of the function block

The macrocells of the function block

Methods

impl XC2BitstreamFB
[src]

[src]

[src]

[src]

[src]

impl XC2BitstreamFB
[src]

[src]

Dump a human-readable explanation of the settings for this FB to the given writer object. device must be the device type this FB was extracted from and is needed to decode I/O pin numbers. fb must be the index of this function block.

[src]

Write the crbit representation of the settings for this FB to the given fuse_array. device must be the device type this FB was extracted from. fb must be the index of this function block.

[src]

Reads the crbit representation of the settings for this FB from the given fuse_array. device must be the device type this FB was extracted from. fb must be the index of this function block.

[src]

Write the .JED representation of the settings for this FB to the given jed object. device must be the device type this FB was extracted from and is needed to encode the ZIA. fuse_base must be the starting fuse number of this function block.

[src]

Internal function that reads a function block

Trait Implementations

impl Copy for XC2BitstreamFB
[src]

impl Clone for XC2BitstreamFB
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for XC2BitstreamFB
[src]

impl PartialEq for XC2BitstreamFB
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Hash for XC2BitstreamFB
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for XC2BitstreamFB
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for XC2BitstreamFB
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations