[][src]Struct fm_plugin::calc_engine::DataVect

pub struct DataVect { /* fields omitted */ }

Implementations

impl DataVect[src]

pub fn new() -> Self[src]

pub fn from_ptr(ptr: *const fmx_DataVect) -> Self[src]

pub fn size(&self) -> u32[src]

pub fn at(&self, position: u32) -> Data[src]

pub fn at_as_text(&self, position: u32) -> Text[src]

pub fn at_as_string(&self, position: u32) -> String[src]

pub fn at_as_number(&self, position: u32) -> FixPt[src]

pub fn at_as_date(&self, position: u32) -> DateTime[src]

pub fn at_as_time(&self, position: u32) -> DateTime[src]

pub fn at_as_timestamp(&self, position: u32) -> DateTime[src]

pub fn at_as_binary(&self, position: u32) -> BinaryData[src]

pub fn at_as_bool(&self, position: u32) -> bool[src]

pub fn push(&mut self, data: Data)[src]

pub fn clear(&mut self)[src]

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

pub fn pop(&mut self) -> Data[src]

Trait Implementations

impl Default for DataVect[src]

impl Drop for DataVect[src]

impl<'a> IntoIterator for &'a DataVect[src]

type Item = Data

The type of the elements being iterated over.

type IntoIter = DataVectIterator<'a>

Which kind of iterator are we turning this into?

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> 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.