pub struct BriefVlan {
pub id: Option<i32>,
pub url: Option<String>,
pub display: Option<String>,
pub vid: i32,
pub name: String,
pub description: Option<String>,
}Expand description
BriefVlan : Adds support for custom fields and tags.
Fields§
§id: Option<i32>§url: Option<String>§display: Option<String>§vid: i32Numeric VLAN ID (1-4094)
name: String§description: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BriefVlan
impl<'de> Deserialize<'de> for BriefVlan
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
impl StructuralPartialEq for BriefVlan
Auto Trait Implementations§
impl Freeze for BriefVlan
impl RefUnwindSafe for BriefVlan
impl Send for BriefVlan
impl Sync for BriefVlan
impl Unpin for BriefVlan
impl UnwindSafe for BriefVlan
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