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