pub struct Sender { /* private fields */ }Expand description
Handle used to interact with the system integration.
Implementations§
source§impl Sender
impl Sender
sourcepub fn modify_area(&self, area_id: AreaId) -> ModifyAreaBuilder<'_>
pub fn modify_area(&self, area_id: AreaId) -> ModifyAreaBuilder<'_>
Start a modify area request.
This needs to be send using ModifyAreaBuilder::send to actually
apply.
Modify a menu item.
sourcepub fn notification(&self, area_id: AreaId) -> NotificationBuilder<'_>
pub fn notification(&self, area_id: AreaId) -> NotificationBuilder<'_>
Send the given notification.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Sender
impl Send for Sender
impl Sync for Sender
impl Unpin for Sender
impl !UnwindSafe for Sender
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