pub enum AnchorFailure {
KindNotFound,
KindAmbiguous,
KeyStale,
}Expand description
Why an overlay anchor failed to resolve.
Variants§
KindNotFound
Kind-based anchor matched zero panels.
KindAmbiguous
Kind-based anchor matched multiple panels (ambiguous).
KeyStale
PanelKey no longer maps to a live panel in the sequence/layout.
Trait Implementations§
Source§impl Clone for AnchorFailure
impl Clone for AnchorFailure
Source§fn clone(&self) -> AnchorFailure
fn clone(&self) -> AnchorFailure
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnchorFailure
impl Debug for AnchorFailure
Source§impl PartialEq for AnchorFailure
impl PartialEq for AnchorFailure
impl Copy for AnchorFailure
impl Eq for AnchorFailure
impl StructuralPartialEq for AnchorFailure
Auto Trait Implementations§
impl Freeze for AnchorFailure
impl RefUnwindSafe for AnchorFailure
impl Send for AnchorFailure
impl Sync for AnchorFailure
impl Unpin for AnchorFailure
impl UnsafeUnpin for AnchorFailure
impl UnwindSafe for AnchorFailure
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