pub struct Interface {
pub name: String,
pub owner: String,
pub version: String,
pub date: String,
pub namespace: String,
pub items: Vec<InterfaceItems>,
}
Expand description
Top level representation of the XML file
Fields§
§name: String
The name of the interface
owner: String
The owner of the interface
version: String
The version of the interface
date: String
The date of publication
namespace: String
The namespace of the interface
items: Vec<InterfaceItems>
Vector of possible values enclosed within the interface
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Interface
impl<'de> Deserialize<'de> for Interface
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 Eq for Interface
impl StructuralPartialEq for Interface
Auto Trait Implementations§
impl Freeze for Interface
impl RefUnwindSafe for Interface
impl Send for Interface
impl Sync for Interface
impl Unpin for Interface
impl UnwindSafe for Interface
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