pub struct FunctionValidatorVerifyParams {
pub mr_enclave: [u8; 32],
pub error_code: u8,
pub observed_time: i64,
pub container_params_hash: [u8; 32],
pub request_slot: u64,
pub next_allowed_timestamp: i64,
}Available on non-
target_os="solana" only.Expand description
The cleaned up parameters used for a verify instruction
Fields§
§mr_enclave: [u8; 32]§error_code: u8§observed_time: i64§container_params_hash: [u8; 32]§request_slot: u64§next_allowed_timestamp: i64Trait Implementations§
Source§impl Clone for FunctionValidatorVerifyParams
impl Clone for FunctionValidatorVerifyParams
Source§fn clone(&self) -> FunctionValidatorVerifyParams
fn clone(&self) -> FunctionValidatorVerifyParams
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 Default for FunctionValidatorVerifyParams
impl Default for FunctionValidatorVerifyParams
Source§fn default() -> FunctionValidatorVerifyParams
fn default() -> FunctionValidatorVerifyParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FunctionValidatorVerifyParams
impl RefUnwindSafe for FunctionValidatorVerifyParams
impl Send for FunctionValidatorVerifyParams
impl Sync for FunctionValidatorVerifyParams
impl Unpin for FunctionValidatorVerifyParams
impl UnwindSafe for FunctionValidatorVerifyParams
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more