pub enum FindAccResult {
Found(Vec<u8>),
KeepLooking(Vec<(u32, Vec<u8>)>),
}Variants§
Auto Trait Implementations§
impl Freeze for FindAccResult
impl RefUnwindSafe for FindAccResult
impl Send for FindAccResult
impl Sync for FindAccResult
impl Unpin for FindAccResult
impl UnwindSafe for FindAccResult
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