pub struct UIFor {
pub item: Ident,
pub index: Option<Ident>,
pub iterable: Expr,
pub body: UIBlock,
pub span: Span,
}Expand description
for item [, index] in expr { ui... } in a UI context.
Fields§
§item: Ident§index: Option<Ident>§iterable: Expr§body: UIBlock§span: SpanTrait Implementations§
Source§impl<'de> Deserialize<'de> for UIFor
impl<'de> Deserialize<'de> for UIFor
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
impl StructuralPartialEq for UIFor
Auto Trait Implementations§
impl Freeze for UIFor
impl RefUnwindSafe for UIFor
impl Send for UIFor
impl Sync for UIFor
impl Unpin for UIFor
impl UnwindSafe for UIFor
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