pub enum PlacePartOutcome {
Placed,
NoSuchPart,
WrongLength,
BeyondTransferEnd,
Duplicate,
}Expand description
Every non-placed outcome matches the reference’s, we just name them.
Variants§
Trait Implementations§
Source§impl Clone for PlacePartOutcome
impl Clone for PlacePartOutcome
Source§fn clone(&self) -> PlacePartOutcome
fn clone(&self) -> PlacePartOutcome
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 moreimpl Copy for PlacePartOutcome
Source§impl Debug for PlacePartOutcome
impl Debug for PlacePartOutcome
impl Eq for PlacePartOutcome
Source§impl PartialEq for PlacePartOutcome
impl PartialEq for PlacePartOutcome
impl StructuralPartialEq for PlacePartOutcome
Auto Trait Implementations§
impl Freeze for PlacePartOutcome
impl RefUnwindSafe for PlacePartOutcome
impl Send for PlacePartOutcome
impl Sync for PlacePartOutcome
impl Unpin for PlacePartOutcome
impl UnsafeUnpin for PlacePartOutcome
impl UnwindSafe for PlacePartOutcome
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