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 duplicate 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 Box<ComplexBaseTypeDeserializer>
impl<'de> Deserializer<'de, ComplexBaseType> for Box<ComplexBaseTypeDeserializer>
Source§fn init(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>
fn init( helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, ComplexBaseType>
Source§fn next(
self,
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> DeserializerResult<'de, ComplexBaseType>
fn next( self, helper: &mut DeserializeHelper, event: Event<'de>, ) -> DeserializerResult<'de, ComplexBaseType>
Source§fn finish(
self,
helper: &mut DeserializeHelper,
) -> Result<ComplexBaseType, Error>
fn finish( self, helper: &mut DeserializeHelper, ) -> Result<ComplexBaseType, Error>
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 = Box<ComplexBaseTypeDeserializer>
type Deserializer = Box<ComplexBaseTypeDeserializer>
The deserializer to use for this type.
Source§fn init<'de>(
helper: &mut DeserializeHelper,
event: Event<'de>,
) -> Result<DeserializerOutput<'de, Self>, Error>
fn init<'de>( helper: &mut DeserializeHelper, event: Event<'de>, ) -> Result<DeserializerOutput<'de, Self>, Error>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'de, R, X> DeserializeSync<'de, R> for Xwhere
R: XmlReaderSync<'de>,
X: WithDeserializer,
impl<'de, R, X> DeserializeSync<'de, R> for Xwhere
R: XmlReaderSync<'de>,
X: WithDeserializer,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.