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>

source

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.

source

pub fn on_error( self, on_error: impl Fn(UseStorageError<C::Error>) + 'static ) -> Self

Optional callback whenever an error occurs.

source

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.

source

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().

source

pub fn filter(self, filter: impl Into<FilterOptions>) -> Self

Debounce or throttle the writing to storage whenever the value changes.

Trait Implementations§

source§

impl<T: Default, C: StringCodec<T> + Default> Default for UseStorageOptions<T, C>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T, C> Freeze for UseStorageOptions<T, C>
where C: Freeze, T: Freeze,

§

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>
where C: Unpin, T: Unpin,

§

impl<T, C> !UnwindSafe for UseStorageOptions<T, C>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more