pub struct MapIterationEventDetails {
pub index: Option<i64>,
pub name: Option<String>,
}
Expand description
Contains details about an iteration of a Map state.
Fields§
§index: Option<i64>
The index of the array belonging to the Map state iteration.
name: Option<String>
The name of the iteration’s parent Map state.
Trait Implementations§
Source§impl Clone for MapIterationEventDetails
impl Clone for MapIterationEventDetails
Source§fn clone(&self) -> MapIterationEventDetails
fn clone(&self) -> MapIterationEventDetails
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 MapIterationEventDetails
impl Debug for MapIterationEventDetails
Source§impl Default for MapIterationEventDetails
impl Default for MapIterationEventDetails
Source§fn default() -> MapIterationEventDetails
fn default() -> MapIterationEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MapIterationEventDetails
impl<'de> Deserialize<'de> for MapIterationEventDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MapIterationEventDetails
impl PartialEq for MapIterationEventDetails
impl StructuralPartialEq for MapIterationEventDetails
Auto Trait Implementations§
impl Freeze for MapIterationEventDetails
impl RefUnwindSafe for MapIterationEventDetails
impl Send for MapIterationEventDetails
impl Sync for MapIterationEventDetails
impl Unpin for MapIterationEventDetails
impl UnwindSafe for MapIterationEventDetails
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