pub enum SetFieldOutcome {
Accepted,
Rejected,
}
Expand description
The outcome of trying to set a field on a map
Variants§
Accepted
The field was successfully set
Rejected
The field was rejected (unknown field set in a struct, for example)
Trait Implementations§
Source§impl Clone for SetFieldOutcome
impl Clone for SetFieldOutcome
Source§fn clone(&self) -> SetFieldOutcome
fn clone(&self) -> SetFieldOutcome
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 SetFieldOutcome
impl Debug for SetFieldOutcome
impl Copy for SetFieldOutcome
Auto Trait Implementations§
impl Freeze for SetFieldOutcome
impl RefUnwindSafe for SetFieldOutcome
impl Send for SetFieldOutcome
impl Sync for SetFieldOutcome
impl Unpin for SetFieldOutcome
impl UnwindSafe for SetFieldOutcome
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