Struct DelegateCx
pub struct DelegateCx<'a, 'b, T> { /* private fields */ }
Expand description
The context passed to the AppDelegate
trait.
Implementations§
§impl<'a, 'b, T> DelegateCx<'a, 'b, T>
impl<'a, 'b, T> DelegateCx<'a, 'b, T>
pub fn rebuild(&mut self)
pub fn rebuild(&mut self)
Request a rebuild of the view tree.
pub fn quit(&mut self)
pub fn quit(&mut self)
Quit the application.
pub fn open_window<V>(
&mut self,
window: Window,
ui: impl FnMut(&mut T) -> V + 'static,
)where
V: AnyView<T> + 'static,
pub fn open_window<V>(
&mut self,
window: Window,
ui: impl FnMut(&mut T) -> V + 'static,
)where
V: AnyView<T> + 'static,
Add a window to the application.
pub fn close_window(&mut self, window_id: WindowId)
pub fn close_window(&mut self, window_id: WindowId)
Close a window.
Methods from Deref<Target = BaseCx<'b>>§
Sourcepub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
pub fn measure_paragraph(&mut self, paragraph: &Paragraph, width: f32) -> Size
Measure a paragraph.
Sourcepub fn layout_paragraph(
&mut self,
paragraph: &Paragraph,
width: f32,
) -> Vec<TextLayoutLine>
pub fn layout_paragraph( &mut self, paragraph: &Paragraph, width: f32, ) -> Vec<TextLayoutLine>
Layout a paragraph.
Sourcepub fn proxy(&self) -> CommandProxy
pub fn proxy(&self) -> CommandProxy
Get the CommandProxy
.
Sourcepub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
pub fn spawn_async(&mut self, future: impl Future<Output = ()> + Send + 'static)
Spawn a future.
Sourcepub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
pub fn cmd_async<T>(&self, future: impl Future<Output = T> + Send + 'static)
Spawn a future sending a command when it completes.
Sourcepub fn contexts_mut(&mut self) -> &mut Contexts
pub fn contexts_mut(&mut self) -> &mut Contexts
Get a mutable reference to the Contexts
.
Sourcepub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
pub fn insert_context<T>(&mut self, context: T) -> Option<T>where
T: Any,
Insert a context.
Sourcepub fn contains_context<T>(&self) -> boolwhere
T: Any,
pub fn contains_context<T>(&self) -> boolwhere
T: Any,
Check if a context is contained.
Sourcepub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
pub fn remove_context<T>(&mut self) -> Option<T>where
T: Any,
Remove a context.
Sourcepub fn get_context<T>(&self) -> Option<&T>where
T: Any,
pub fn get_context<T>(&self) -> Option<&T>where
T: Any,
Get a context.
Sourcepub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
pub fn get_context_mut<T>(&mut self) -> Option<&mut T>where
T: Any,
Get a mutable context.
Sourcepub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
pub fn context_mut<T>(&mut self) -> &mut Twhere
T: Any,
Sourcepub fn context_or_default<T>(&mut self) -> &mut T
pub fn context_or_default<T>(&mut self) -> &mut T
Get a context or insert a default
.
Trait Implementations§
§impl<'b, T> Deref for DelegateCx<'_, 'b, T>
impl<'b, T> Deref for DelegateCx<'_, 'b, T>
§impl<T> DerefMut for DelegateCx<'_, '_, T>
impl<T> DerefMut for DelegateCx<'_, '_, T>
§fn deref_mut(&mut self) -> &mut <DelegateCx<'_, '_, T> as Deref>::Target
fn deref_mut(&mut self) -> &mut <DelegateCx<'_, '_, T> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations§
impl<'a, 'b, T> Freeze for DelegateCx<'a, 'b, T>
impl<'a, 'b, T> !RefUnwindSafe for DelegateCx<'a, 'b, T>
impl<'a, 'b, T> !Send for DelegateCx<'a, 'b, T>
impl<'a, 'b, T> !Sync for DelegateCx<'a, 'b, T>
impl<'a, 'b, T> Unpin for DelegateCx<'a, 'b, T>
impl<'a, 'b, T> !UnwindSafe for DelegateCx<'a, 'b, T>
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