pub struct AddFlowtable {
pub family: String,
pub table: String,
pub name: String,
pub comment: Option<String>,
pub hook: Option<String>,
pub prio: Option<isize>,
pub dev: Option<Vec<String>>,
}
Fields§
§family: String
§table: String
§name: String
§comment: Option<String>
§hook: Option<String>
§prio: Option<isize>
§dev: Option<Vec<String>>
Trait Implementations§
Source§impl Clone for AddFlowtable
impl Clone for AddFlowtable
Source§fn clone(&self) -> AddFlowtable
fn clone(&self) -> AddFlowtable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AddFlowtable
impl Debug for AddFlowtable
Source§impl Default for AddFlowtable
impl Default for AddFlowtable
Source§fn default() -> AddFlowtable
fn default() -> AddFlowtable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddFlowtable
impl<'de> Deserialize<'de> for AddFlowtable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AddFlowtable
impl RefUnwindSafe for AddFlowtable
impl Send for AddFlowtable
impl Sync for AddFlowtable
impl Unpin for AddFlowtable
impl UnwindSafe for AddFlowtable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more