pub enum ValueResult {
Ok(Value),
Err(Value),
}
Variants§
Implementations§
Source§impl ValueResult
impl ValueResult
Trait Implementations§
Source§impl Clone for ValueResult
impl Clone for ValueResult
Source§fn clone(&self) -> ValueResult
fn clone(&self) -> ValueResult
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 moreSource§impl Debug for ValueResult
impl Debug for ValueResult
Auto Trait Implementations§
impl Freeze for ValueResult
impl RefUnwindSafe for ValueResult
impl Send for ValueResult
impl Sync for ValueResult
impl Unpin for ValueResult
impl UnwindSafe for ValueResult
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