Struct leptos_use::UseTimestampOptions
source · pub struct UseTimestampOptions { /* private fields */ }
Expand description
Options for use_timestamp_with_controls_and_options
.
Implementations§
source§impl UseTimestampOptions
impl UseTimestampOptions
sourcepub fn offset(self, value: f64) -> Self
pub fn offset(self, value: f64) -> Self
Offset value in milliseconds that is added to the returned timestamp. Defaults to 0.0
.
sourcepub fn immediate(self, value: bool) -> Self
pub fn immediate(self, value: bool) -> Self
Whether to update the timestamp immediately. Defaults to true
.
sourcepub fn interval(self, value: impl Into<TimestampInterval>) -> Self
pub fn interval(self, value: impl Into<TimestampInterval>) -> Self
Update interval in milliseconds or RequestAnimationFrame
. Defaults to RequestAnimationFrame
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UseTimestampOptions
impl !RefUnwindSafe for UseTimestampOptions
impl !Send for UseTimestampOptions
impl !Sync for UseTimestampOptions
impl Unpin for UseTimestampOptions
impl !UnwindSafe for UseTimestampOptions
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