pub struct PaneSetAny<T> { /* private fields */ }Expand description
Per-pane results for an any-pane wait.
Implementations§
Source§impl<T> PaneSetAny<T>
impl<T> PaneSetAny<T>
Sourcepub const fn success(&self) -> Option<&PaneSetSuccess<T>>
pub const fn success(&self) -> Option<&PaneSetSuccess<T>>
Returns the successful pane result, if any.
Sourcepub fn failures(&self) -> &[PaneSetFailure]
pub fn failures(&self) -> &[PaneSetFailure]
Returns failures observed before the first match, or all failures when no pane matched.
Trait Implementations§
Auto Trait Implementations§
impl<T> !RefUnwindSafe for PaneSetAny<T>
impl<T> !UnwindSafe for PaneSetAny<T>
impl<T> Freeze for PaneSetAny<T>where
T: Freeze,
impl<T> Send for PaneSetAny<T>where
T: Send,
impl<T> Sync for PaneSetAny<T>where
T: Sync,
impl<T> Unpin for PaneSetAny<T>where
T: Unpin,
impl<T> UnsafeUnpin for PaneSetAny<T>where
T: UnsafeUnpin,
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