Skip to main content

Interest

Trait Interest 

Source
pub trait Interest: Interval {
    // Required methods
    fn id(&self) -> &str;
    fn schema(&self) -> &str;
    fn role(&self) -> Option<&[String]>;
    fn status(&self) -> Option<&[String]>;
}
Expand description

Trait for FTM schema: Interest

Required Methods§

Source

fn id(&self) -> &str

Get the entity ID

Source

fn schema(&self) -> &str

Get the schema name

Source

fn role(&self) -> Option<&[String]>

Get Role property

Source

fn status(&self) -> Option<&[String]>

Get Status property

Implementors§