pub struct Opaque<V> {
pub content: V,
}
Expand description
A view that bridges the gap between impl View
and impl View<T>
.
§Example
fn opaque_view() -> impl View {
button(text!("I am a button!"))
}
fn data_view<T>() -> impl View<T> {
opaque(opaque_view())
}
Fields§
§content: V
The content view.
Implementations§
Trait Implementations§
Source§impl<T, V> View<T> for Opaque<V>where
V: View,
impl<T, V> View<T> for Opaque<V>where
V: View,
Source§type State = <V as View>::State
type State = <V as View>::State
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
_data: &mut T,
) -> <Opaque<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, _data: &mut T, ) -> <Opaque<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
state: &mut <Opaque<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
_data: &mut T,
old: &Opaque<V>,
)
fn rebuild( &mut self, state: &mut <Opaque<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, _data: &mut T, old: &Opaque<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
state: &mut <Opaque<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
_data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, state: &mut <Opaque<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, _data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Opaque<V>where
V: Freeze,
impl<V> RefUnwindSafe for Opaque<V>where
V: RefUnwindSafe,
impl<V> Send for Opaque<V>where
V: Send,
impl<V> Sync for Opaque<V>where
V: Sync,
impl<V> Unpin for Opaque<V>where
V: Unpin,
impl<V> UnwindSafe for Opaque<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
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