rbfrt 0.1.8

Rust library for interaction with Intel Tofino(TM) BFRT switch interface.
Documentation
/* Copyright 2023-present University of Tuebingen, Chair of Communication Networks
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * Steffen Lindner (steffen.lindner@uni-tuebingen.de)
 */
mod info;
pub use info::BFRTInfo;
pub(crate) use info::Convert;

mod table_object;
pub use table_object::BFRTTableObject;

mod action;
mod table_key_object;
mod types;
pub use table_key_object::BFRTTableKeyObject;

mod data;
mod learn_filter;

pub use learn_filter::LearnFilterObject;

pub use data::BFRTData;
pub use data::BFRTSingleton;

pub use types::BFRTFieldType;
pub use types::TableMatchTypes;
pub use types::TableType;

pub use action::BFRTAction;