pub struct SolanaFunctionSimulationEnvironment {
pub sb_function_trigger: FunctionTriggerType,
pub sb_container_params: Vec<u8>,
}
Available on crate feature
client
only.Expand description
The expected environment variables when a solana function is being executed
Fields§
§sb_function_trigger: FunctionTriggerType
SB_FUNCTION_TRIGGER: request* | routine
sb_container_params: Vec<u8>
SB_CONTAINER_PARAMS: 0* | 1
Implementations§
Trait Implementations§
source§impl Clone for SolanaFunctionSimulationEnvironment
impl Clone for SolanaFunctionSimulationEnvironment
source§fn clone(&self) -> SolanaFunctionSimulationEnvironment
fn clone(&self) -> SolanaFunctionSimulationEnvironment
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 SolanaFunctionSimulationEnvironment
impl Default for SolanaFunctionSimulationEnvironment
source§fn default() -> SolanaFunctionSimulationEnvironment
fn default() -> SolanaFunctionSimulationEnvironment
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SolanaFunctionSimulationEnvironment
impl<'de> Deserialize<'de> for SolanaFunctionSimulationEnvironment
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SolanaFunctionSimulationEnvironment
impl Send for SolanaFunctionSimulationEnvironment
impl Sync for SolanaFunctionSimulationEnvironment
impl Unpin for SolanaFunctionSimulationEnvironment
impl UnwindSafe for SolanaFunctionSimulationEnvironment
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