pub struct Vendor {
pub file_version: Option<u32>,
pub id: u32,
pub name: Option<String>,
pub comment: Option<String>,
pub url: Option<String>,
pub desc_url: Option<String>,
pub image: Option<Image>,
}Expand description
Vendor information.
Fields§
§file_version: Option<u32>§id: u32§name: Option<String>§comment: Option<String>§url: Option<String>§desc_url: Option<String>§image: Option<Image>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vendor
impl RefUnwindSafe for Vendor
impl Send for Vendor
impl Sync for Vendor
impl Unpin for Vendor
impl UnwindSafe for Vendor
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