[][src]Struct nifpga::Session

pub struct Session { /* fields omitted */ }

Implementations

impl Session[src]

pub fn open(
    bitfile: &str,
    signature: &str,
    resource: &str,
    run: bool,
    reset_on_close: bool
) -> Result<Self, NifpgaError>
[src]

pub fn read<T: Type>(&self, indicator: u32) -> Result<T, NifpgaError>[src]

pub fn write<T: Type>(&self, control: u32, value: T) -> Result<(), NifpgaError>[src]

pub fn read_array<T: Type>(
    &self,
    indicator: u32,
    slice: &mut [T]
) -> Result<(), NifpgaError>
[src]

pub fn write_array<T: Type>(
    &self,
    control: u32,
    slice: &[T]
) -> Result<(), NifpgaError>
[src]

pub fn open_read_fifo<'a, T: Type>(
    &'a self,
    fifo: u32,
    depth: usize
) -> Result<(ReadFifo<'a, T>, usize), NifpgaError>
[src]

pub fn open_write_fifo<'a, T: Type>(
    &'a self,
    fifo: u32,
    depth: usize
) -> Result<(WriteFifo<'a, T>, usize), NifpgaError>
[src]

pub fn run(&self) -> Result<(), NifpgaError>[src]

pub fn abort(&self) -> Result<(), NifpgaError>[src]

pub fn reset(&self) -> Result<(), NifpgaError>[src]

pub fn download(&self) -> Result<(), NifpgaError>[src]

pub fn acknowledge_irqs(&self, irqs: u32) -> Result<(), NifpgaError>[src]

pub fn reserve_irq_context(&self) -> Result<Context, NifpgaError>[src]

Trait Implementations

impl Drop for Session[src]

Auto Trait Implementations

impl RefUnwindSafe for Session

impl Send for Session

impl Sync for Session

impl Unpin for Session

impl UnwindSafe for Session

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.