[][src]Trait agnes::frame::IntoStrFrame

pub trait IntoStrFrame<Label> {
    type Output;
    fn into_str_frame() -> Self::Output;
fn into_repeated_str_frame(n: usize) -> Self::Output; }

Trait for creating a DataFrame containing a single field with label Label which contains the String labels of the implementing type (a cons-list).

Associated Types

type Output

Output DataFrame type.

Loading content...

Required methods

fn into_str_frame() -> Self::Output

Create the DataFrame with the a single field labeled Label which contains the String labels from this type. The frame will have a number of rows equal to the length of the implementing cons-list.

fn into_repeated_str_frame(n: usize) -> Self::Output

Create the DataFrame with the a single field labeled Label which contains the String labels from this type, repeated n times. The frame will have a number of rows equal to the length of the implementing cons-list multiplied by n.

Loading content...

Implementors

impl<Label, List> IntoStrFrame<Label> for List where
    Label: Debug,
    List: StrLabels
[src]

Loading content...