pub enum AddResult {
Added,
Updated,
Rejected,
}Expand description
Result of adding an address.
Variants§
Added
Address was added to the new table.
Updated
Address was already known and was updated.
Rejected
Address was rejected (stale, invalid, or table full after eviction).
Trait Implementations§
impl Eq for AddResult
impl StructuralPartialEq for AddResult
Auto Trait Implementations§
impl Freeze for AddResult
impl RefUnwindSafe for AddResult
impl Send for AddResult
impl Sync for AddResult
impl Unpin for AddResult
impl UnsafeUnpin for AddResult
impl UnwindSafe for AddResult
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