pub struct UIActionQueueReceiver { /* private fields */ }Implementations§
Source§impl UIActionQueueReceiver
impl UIActionQueueReceiver
pub fn sender(&self) -> UIActionQueueSender
pub fn queue_action(&self, action: UIAction)
pub fn process( &mut self, project_config: &HydrateProjectConfiguration, editor_model: &mut EditorModel, asset_engine: &mut AssetEngine, ui_state: &mut UiState, modal_action: &mut Option<Box<dyn ModalAction>>, ctx: &Context, )
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UIActionQueueReceiver
impl RefUnwindSafe for UIActionQueueReceiver
impl !Send for UIActionQueueReceiver
impl !Sync for UIActionQueueReceiver
impl Unpin for UIActionQueueReceiver
impl UnwindSafe for UIActionQueueReceiver
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 more