pub enum UpValueState {
Open(ValueDesc),
Closed(GosValue),
}
Variants§
Trait Implementations§
Source§impl Clone for UpValueState
impl Clone for UpValueState
Source§fn clone(&self) -> UpValueState
fn clone(&self) -> UpValueState
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 UpValueState
impl Debug for UpValueState
Source§impl PartialEq for UpValueState
impl PartialEq for UpValueState
impl Eq for UpValueState
impl StructuralPartialEq for UpValueState
Auto Trait Implementations§
impl Freeze for UpValueState
impl !RefUnwindSafe for UpValueState
impl !Send for UpValueState
impl !Sync for UpValueState
impl Unpin for UpValueState
impl !UnwindSafe for UpValueState
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