pub enum PlacementOutcome {
Found(ClearancePlacementEvidence),
NoPlacement(CompletePlacementEvidence),
}Variants§
Found(ClearancePlacementEvidence)
NoPlacement(CompletePlacementEvidence)
Trait Implementations§
Source§impl Clone for PlacementOutcome
impl Clone for PlacementOutcome
Source§fn clone(&self) -> PlacementOutcome
fn clone(&self) -> PlacementOutcome
Returns a copy 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 PlacementOutcome
impl Debug for PlacementOutcome
Source§impl PartialEq for PlacementOutcome
impl PartialEq for PlacementOutcome
impl StructuralPartialEq for PlacementOutcome
Auto Trait Implementations§
impl Freeze for PlacementOutcome
impl RefUnwindSafe for PlacementOutcome
impl Send for PlacementOutcome
impl Sync for PlacementOutcome
impl Unpin for PlacementOutcome
impl UnwindSafe for PlacementOutcome
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