pub enum DecouplingResult {
Success,
PartialSuccess {
reason: String,
},
}Expand description
Result of decoupling operation
Variants§
Trait Implementations§
Source§impl Clone for DecouplingResult
impl Clone for DecouplingResult
Source§fn clone(&self) -> DecouplingResult
fn clone(&self) -> DecouplingResult
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 moreAuto Trait Implementations§
impl Freeze for DecouplingResult
impl RefUnwindSafe for DecouplingResult
impl Send for DecouplingResult
impl Sync for DecouplingResult
impl Unpin for DecouplingResult
impl UnwindSafe for DecouplingResult
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