Struct leptos_use::storage::UseStorageOptions
source · pub struct UseStorageOptions<T: 'static, C: StringCodec<T>> { /* private fields */ }
Expand description
Options for use with [use_local_storage_with_options
], [use_session_storage_with_options
] and use_storage_with_options
.
Implementations§
source§impl<T: Default, C: StringCodec<T>> UseStorageOptions<T, C>
impl<T: Default, C: StringCodec<T>> UseStorageOptions<T, C>
sourcepub fn codec(self, codec: impl Into<C>) -> Self
pub fn codec(self, codec: impl Into<C>) -> Self
Sets the codec to use for encoding and decoding values to and from UTF-16 strings.
sourcepub fn on_error(
self,
on_error: impl Fn(UseStorageError<C::Error>) + 'static
) -> Self
pub fn on_error( self, on_error: impl Fn(UseStorageError<C::Error>) + 'static ) -> Self
Optional callback whenever an error occurs.
sourcepub fn listen_to_storage_changes(self, listen_to_storage_changes: bool) -> Self
pub fn listen_to_storage_changes(self, listen_to_storage_changes: bool) -> Self
Listen to changes to this storage key from browser and page events. Defaults to true.
sourcepub fn initial_value(self, initial: impl Into<MaybeRwSignal<T>>) -> Self
pub fn initial_value(self, initial: impl Into<MaybeRwSignal<T>>) -> Self
Initial value to use when the storage key is not set. Note that this value is read once on creation of the storage hook and not updated again. Accepts a signal and defaults to T::default()
.
sourcepub fn filter(self, filter: impl Into<FilterOptions>) -> Self
pub fn filter(self, filter: impl Into<FilterOptions>) -> Self
Debounce or throttle the writing to storage whenever the value changes.
Trait Implementations§
Auto Trait Implementations§
impl<T, C> Freeze for UseStorageOptions<T, C>
impl<T, C> !RefUnwindSafe for UseStorageOptions<T, C>
impl<T, C> !Send for UseStorageOptions<T, C>
impl<T, C> !Sync for UseStorageOptions<T, C>
impl<T, C> Unpin for UseStorageOptions<T, C>
impl<T, C> !UnwindSafe for UseStorageOptions<T, C>
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