pub enum Rebound {
Bound(String),
Free(String),
}Expand description
The outcome of rebinding one node.
Variants§
Bound(String)
The target knows this concept at the SAME address — bound to the closed world.
Free(String)
The target does not know it, or knows it at a DIFFERENT address — left in the free category as live data (graceful open-world).
Implementations§
Trait Implementations§
impl Eq for Rebound
impl StructuralPartialEq for Rebound
Auto Trait Implementations§
impl Freeze for Rebound
impl RefUnwindSafe for Rebound
impl Send for Rebound
impl Sync for Rebound
impl Unpin for Rebound
impl UnsafeUnpin for Rebound
impl UnwindSafe for Rebound
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