[][src]Struct rlink::api::element::Record

pub struct Record { /* fields omitted */ }

Implementations

impl Record[src]

pub fn new() -> Self[src]

pub fn with_capacity(capacity: usize) -> Self[src]

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

pub fn extend(&mut self, record: Record) -> Result<(), Error>[src]

pub fn set_window_trigger(&mut self, window: Window)[src]

pub fn get_trigger_window(&self) -> Option<Window>[src]

pub fn as_buffer(&mut self) -> &mut Buffer[src]

pub fn get_reader<'a, 'b>(
    &'a mut self,
    data_types: &'b [u8]
) -> BufferReader<'a, 'b>
[src]

pub fn get_writer<'a, 'b>(
    &'a mut self,
    data_types: &'b [u8]
) -> BufferWriter<'a, 'b>
[src]

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

Trait Implementations

impl Clone for Record[src]

impl Debug for Record[src]

impl Eq for Record[src]

impl From<Record> for Element[src]

impl Hash for Record[src]

impl PartialEq<Record> for Record[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> CallHasher for T where
    T: Hash

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,