Trait ovsdb::Entity

source ·
pub trait Entity {
    // Required method
    fn table_name() -> &'static str;
}
Expand description

An entity that can be retrieved from OVSDB.

This represents a single row of data retrieved from a table.

Required Methods§

source

fn table_name() -> &'static str

The name of the OVSDB table associated with this entity.

Aids in generating transact queries.

Object Safety§

This trait is not object safe.

Implementors§