pub struct ImportedObjectDefinition {
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 ImportedObjectDefinition
impl Clone for ImportedObjectDefinition
source§fn clone(&self) -> ImportedObjectDefinition
fn clone(&self) -> ImportedObjectDefinition
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 ImportedObjectDefinition
impl Debug for ImportedObjectDefinition
source§impl<'de> Deserialize<'de> for ImportedObjectDefinition
impl<'de> Deserialize<'de> for ImportedObjectDefinition
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<ImportedObjectDefinition, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ImportedObjectDefinition, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ImportedObjectDefinition
impl PartialEq for ImportedObjectDefinition
source§fn eq(&self, other: &ImportedObjectDefinition) -> bool
fn eq(&self, other: &ImportedObjectDefinition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ImportedObjectDefinition
impl Serialize for ImportedObjectDefinition
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 ImportedObjectDefinition
Auto Trait Implementations§
impl RefUnwindSafe for ImportedObjectDefinition
impl Send for ImportedObjectDefinition
impl Sync for ImportedObjectDefinition
impl Unpin for ImportedObjectDefinition
impl UnwindSafe for ImportedObjectDefinition
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