pub struct ComplexBaseType {
pub id: Option<String>,
pub name: Option<String>,
pub mixed: Option<bool>,
pub abstract_: bool,
pub final_: Option<DerivationSetType>,
pub block: Option<DerivationSetType>,
pub default_attributes_apply: bool,
pub content: Vec<ComplexBaseTypeContent>,
}Fields§
§id: Option<String>§name: Option<String>§mixed: Option<bool>§abstract_: bool§final_: Option<DerivationSetType>§block: Option<DerivationSetType>§default_attributes_apply: bool§content: Vec<ComplexBaseTypeContent>Implementations§
Source§impl ComplexBaseType
impl ComplexBaseType
pub fn default_abstract_() -> bool
pub fn default_default_attributes_apply() -> bool
Trait Implementations§
Source§impl Clone for ComplexBaseType
impl Clone for ComplexBaseType
Source§fn clone(&self) -> ComplexBaseType
fn clone(&self) -> ComplexBaseType
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 ComplexBaseType
impl Debug for ComplexBaseType
Source§impl<'de> Deserializer<'de, ComplexBaseType> for ComplexBaseTypeDeserializer
impl<'de> Deserializer<'de, ComplexBaseType> for ComplexBaseTypeDeserializer
Source§fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>where
R: DeserializeReader,
fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>where
R: DeserializeReader,
Source§fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>where
R: DeserializeReader,
fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>where
R: DeserializeReader,
Source§fn finish<R>(self, reader: &R) -> Result<ComplexBaseType, Error>where
R: DeserializeReader,
fn finish<R>(self, reader: &R) -> Result<ComplexBaseType, Error>where
R: DeserializeReader,
Force the deserializer to finish. Read more
Source§impl PartialEq for ComplexBaseType
impl PartialEq for ComplexBaseType
Source§impl WithDeserializer for ComplexBaseType
impl WithDeserializer for ComplexBaseType
Source§type Deserializer = ComplexBaseTypeDeserializer
type Deserializer = ComplexBaseTypeDeserializer
The deserializer to use for this type.
impl Eq for ComplexBaseType
impl StructuralPartialEq for ComplexBaseType
Auto Trait Implementations§
impl Freeze for ComplexBaseType
impl RefUnwindSafe for ComplexBaseType
impl Send for ComplexBaseType
impl Sync for ComplexBaseType
impl Unpin for ComplexBaseType
impl UnwindSafe for ComplexBaseType
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