pub struct sendHintReturn {}Expand description
@notice Sends a hint to the oracle service backend.
@dev This is a view function that doesn’t modify state but is intercepted by the EVM
to forward hints to the oracle service. Available from Rex2 hardfork.
@param topic A bytes32 topic identifier for the hint.
@param data Arbitrary data payload for the hint.
Container type for the return parameters of the sendHint(bytes32,bytes) function.
Trait Implementations§
Source§impl Clone for sendHintReturn
impl Clone for sendHintReturn
Source§fn clone(&self) -> sendHintReturn
fn clone(&self) -> sendHintReturn
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 moreAuto Trait Implementations§
impl Freeze for sendHintReturn
impl RefUnwindSafe for sendHintReturn
impl Send for sendHintReturn
impl Sync for sendHintReturn
impl Unpin for sendHintReturn
impl UnsafeUnpin for sendHintReturn
impl UnwindSafe for sendHintReturn
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