pub struct FactoryInfo {
pub vendor: String,
pub url: String,
pub email: String,
pub flags: i32,
}Expand description
Factory-level metadata (the plugin vendor’s identity).
Fields§
§vendor: StringVendor / manufacturer name.
url: StringVendor URL.
email: StringVendor contact email.
flags: i32Raw factory flags.
Trait Implementations§
Source§impl Clone for FactoryInfo
impl Clone for FactoryInfo
Source§fn clone(&self) -> FactoryInfo
fn clone(&self) -> FactoryInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FactoryInfo
impl Debug for FactoryInfo
Source§impl Default for FactoryInfo
impl Default for FactoryInfo
Source§fn default() -> FactoryInfo
fn default() -> FactoryInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryInfo
impl<'de> Deserialize<'de> for FactoryInfo
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 FactoryInfo
impl RefUnwindSafe for FactoryInfo
impl Send for FactoryInfo
impl Sync for FactoryInfo
impl Unpin for FactoryInfo
impl UnsafeUnpin for FactoryInfo
impl UnwindSafe for FactoryInfo
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