pub struct NodeRepeatableItemProjection {
pub collection_key: String,
pub item_id: String,
pub item_index: usize,
pub slot_key: String,
pub anchor: String,
pub port_key: Option<String>,
pub item_data: Value,
pub slots: Vec<NodeSurfaceSlotDescriptor>,
}Expand description
Projected instance of one repeatable item for adapter rendering and measurement.
Fields§
§collection_key: String§item_id: String§item_index: usize§slot_key: String§anchor: String§port_key: Option<String>§item_data: Value§slots: Vec<NodeSurfaceSlotDescriptor>Trait Implementations§
Source§impl Clone for NodeRepeatableItemProjection
impl Clone for NodeRepeatableItemProjection
Source§fn clone(&self) -> NodeRepeatableItemProjection
fn clone(&self) -> NodeRepeatableItemProjection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NodeRepeatableItemProjection
impl Debug for NodeRepeatableItemProjection
Source§impl<'de> Deserialize<'de> for NodeRepeatableItemProjection
impl<'de> Deserialize<'de> for NodeRepeatableItemProjection
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 NodeRepeatableItemProjection
impl PartialEq for NodeRepeatableItemProjection
Source§fn eq(&self, other: &NodeRepeatableItemProjection) -> bool
fn eq(&self, other: &NodeRepeatableItemProjection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeRepeatableItemProjection
Auto Trait Implementations§
impl Freeze for NodeRepeatableItemProjection
impl RefUnwindSafe for NodeRepeatableItemProjection
impl Send for NodeRepeatableItemProjection
impl Sync for NodeRepeatableItemProjection
impl Unpin for NodeRepeatableItemProjection
impl UnsafeUnpin for NodeRepeatableItemProjection
impl UnwindSafe for NodeRepeatableItemProjection
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