pub struct ValueArrayValueElementType {
pub content: Vec<ValueArrayValueElementTypeContent>,
}
Expand description
Array value consisting of a list of occurrances - value pairs
Fields§
§content: Vec<ValueArrayValueElementTypeContent>
Trait Implementations§
Source§impl Debug for ValueArrayValueElementType
impl Debug for ValueArrayValueElementType
Source§impl<'de> Deserializer<'de, ValueArrayValueElementType> for Box<ValueArrayValueElementTypeDeserializer>
impl<'de> Deserializer<'de, ValueArrayValueElementType> for Box<ValueArrayValueElementTypeDeserializer>
Source§fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ValueArrayValueElementType>where
R: DeserializeReader,
fn init<R>(
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ValueArrayValueElementType>where
R: DeserializeReader,
Source§fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ValueArrayValueElementType>where
R: DeserializeReader,
fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, ValueArrayValueElementType>where
R: DeserializeReader,
Source§fn finish<R>(self, reader: &R) -> Result<ValueArrayValueElementType, Error>where
R: DeserializeReader,
fn finish<R>(self, reader: &R) -> Result<ValueArrayValueElementType, Error>where
R: DeserializeReader,
Force the deserializer to finish. Read more
Source§impl WithDeserializer for ValueArrayValueElementType
impl WithDeserializer for ValueArrayValueElementType
Source§type Deserializer = Box<ValueArrayValueElementTypeDeserializer>
type Deserializer = Box<ValueArrayValueElementTypeDeserializer>
The deserializer to use for this type.
Source§impl WithSerializer for ValueArrayValueElementType
impl WithSerializer for ValueArrayValueElementType
Source§type Serializer<'x> = ValueArrayValueElementTypeSerializer<'x>
type Serializer<'x> = ValueArrayValueElementTypeSerializer<'x>
The serializer to use for this type.
Source§fn serializer<'ser>(
&'ser self,
name: Option<&'ser str>,
is_root: bool,
) -> Result<Self::Serializer<'ser>, Error>
fn serializer<'ser>( &'ser self, name: Option<&'ser str>, is_root: bool, ) -> Result<Self::Serializer<'ser>, Error>
Initializes a new serializer from the passed
value
. Read moreAuto Trait Implementations§
impl Freeze for ValueArrayValueElementType
impl RefUnwindSafe for ValueArrayValueElementType
impl Send for ValueArrayValueElementType
impl Sync for ValueArrayValueElementType
impl Unpin for ValueArrayValueElementType
impl UnwindSafe for ValueArrayValueElementType
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