Struct polywrap_plugin::ImportedEnvDefinition
source · pub struct ImportedEnvDefinition {
pub comment: Option<String>,
pub interfaces: Option<Vec<Box<InterfaceImplementedDefinition>>>,
pub kind: f64,
pub name: Option<String>,
pub namespace: String,
pub native_type: String,
pub properties: Option<Vec<Box<PropertyDefinition>>>,
pub required: Option<bool>,
pub type_: String,
pub uri: String,
}Fields§
§comment: Option<String>§interfaces: Option<Vec<Box<InterfaceImplementedDefinition>>>§kind: f64§name: Option<String>§namespace: String§native_type: String§properties: Option<Vec<Box<PropertyDefinition>>>§required: Option<bool>§type_: String§uri: StringTrait Implementations§
source§impl Clone for ImportedEnvDefinition
impl Clone for ImportedEnvDefinition
source§fn clone(&self) -> ImportedEnvDefinition
fn clone(&self) -> ImportedEnvDefinition
Returns a copy 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 ImportedEnvDefinition
impl Debug for ImportedEnvDefinition
source§impl<'de> Deserialize<'de> for ImportedEnvDefinition
impl<'de> Deserialize<'de> for ImportedEnvDefinition
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ImportedEnvDefinition, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ImportedEnvDefinition, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ImportedEnvDefinition
impl PartialEq for ImportedEnvDefinition
source§fn eq(&self, other: &ImportedEnvDefinition) -> bool
fn eq(&self, other: &ImportedEnvDefinition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ImportedEnvDefinition
impl Serialize for ImportedEnvDefinition
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ImportedEnvDefinition
Auto Trait Implementations§
impl RefUnwindSafe for ImportedEnvDefinition
impl Send for ImportedEnvDefinition
impl Sync for ImportedEnvDefinition
impl Unpin for ImportedEnvDefinition
impl UnwindSafe for ImportedEnvDefinition
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