pub struct BuiltRow {
pub scope: Scope,
pub rebind: Rc<dyn Fn(usize)>,
}Expand description
A freshly built row: its Scope (owns the row’s reactive graph) and a rebind writer that
slot-writes item index into the row’s ItemSlot when the cell is recycled.
Fields§
§scope: Scope§rebind: Rc<dyn Fn(usize)>Auto Trait Implementations§
impl Freeze for BuiltRow
impl !RefUnwindSafe for BuiltRow
impl !Send for BuiltRow
impl !Sync for BuiltRow
impl Unpin for BuiltRow
impl UnsafeUnpin for BuiltRow
impl !UnwindSafe for BuiltRow
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more