pub enum CloseOutcome {
Closed {
removed: Vec<SurfaceId>,
},
RejectedRoot {
surface_id: SurfaceId,
},
NotFound,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CloseOutcome
impl Clone for CloseOutcome
Source§fn clone(&self) -> CloseOutcome
fn clone(&self) -> CloseOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CloseOutcome
impl Debug for CloseOutcome
impl Eq for CloseOutcome
Source§impl PartialEq for CloseOutcome
impl PartialEq for CloseOutcome
impl StructuralPartialEq for CloseOutcome
Auto Trait Implementations§
impl Freeze for CloseOutcome
impl RefUnwindSafe for CloseOutcome
impl Send for CloseOutcome
impl Sync for CloseOutcome
impl Unpin for CloseOutcome
impl UnsafeUnpin for CloseOutcome
impl UnwindSafe for CloseOutcome
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