pub enum BindingLocatorError {
MutateImmutable,
Silent,
}Expand description
Action that is returned when a fallible binding operation.
Variants§
MutateImmutable
Trying to mutate immutable binding,
Silent
Indicates that any action is silently ignored.
Trait Implementations§
Source§impl Clone for BindingLocatorError
impl Clone for BindingLocatorError
Source§fn clone(&self) -> BindingLocatorError
fn clone(&self) -> BindingLocatorError
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 BindingLocatorError
Auto Trait Implementations§
impl Freeze for BindingLocatorError
impl RefUnwindSafe for BindingLocatorError
impl Send for BindingLocatorError
impl Sync for BindingLocatorError
impl Unpin for BindingLocatorError
impl UnsafeUnpin for BindingLocatorError
impl UnwindSafe for BindingLocatorError
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