pub struct UseBinder {
pub target_ref: NodeRef<Element>,
pub content_ref: NodeRef<HtmlElement>,
pub follower_ref: NodeRef<Div>,
pub placement: RwSignal<FollowerPlacement>,
pub sync_position: Arc<dyn Fn() + Send + Sync>,
pub ensure_listener: Arc<dyn Fn() + Send>,
pub remove_listener: Arc<dyn Fn() + Send>,
}Fields§
§target_ref: NodeRef<Element>§content_ref: NodeRef<HtmlElement>§follower_ref: NodeRef<Div>§placement: RwSignal<FollowerPlacement>§sync_position: Arc<dyn Fn() + Send + Sync>§ensure_listener: Arc<dyn Fn() + Send>§remove_listener: Arc<dyn Fn() + Send>Auto Trait Implementations§
impl Freeze for UseBinder
impl !RefUnwindSafe for UseBinder
impl !Send for UseBinder
impl !Sync for UseBinder
impl Unpin for UseBinder
impl !UnwindSafe for UseBinder
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 moreSource§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.