pub struct UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>where
T: Clone + PartialEq + 'static,
SetFn: Fn(usize) -> T + Clone,
NextFn: Fn() + Clone,
PrevFn: Fn() + Clone,
ShiftFn: Fn(i64) -> T + Clone,{
pub state: Signal<T>,
pub set_state: WriteSignal<T>,
pub index: Signal<usize>,
pub set_index: SetFn,
pub next: NextFn,
pub prev: PrevFn,
pub shift: ShiftFn,
}
Expand description
Return type of use_cycle_list
.
Fields§
§state: Signal<T>
Current value
set_state: WriteSignal<T>
Set current value
index: Signal<usize>
Current index of current value in list
set_index: SetFn
Set current index of current value in list
next: NextFn
Go to next value (cyclic)
prev: PrevFn
Go to previous value (cyclic)
shift: ShiftFn
Move by the specified amount from the current value (cyclic)
Auto Trait Implementations§
impl<T, SetFn, NextFn, PrevFn, ShiftFn> Freeze for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
impl<T, SetFn, NextFn, PrevFn, ShiftFn> !RefUnwindSafe for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
impl<T, SetFn, NextFn, PrevFn, ShiftFn> !Send for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
impl<T, SetFn, NextFn, PrevFn, ShiftFn> !Sync for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
impl<T, SetFn, NextFn, PrevFn, ShiftFn> Unpin for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
impl<T, SetFn, NextFn, PrevFn, ShiftFn> !UnwindSafe for UseCycleListReturn<T, SetFn, NextFn, PrevFn, ShiftFn>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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