pub struct ActivateEnvironmentInput {
pub context: PluginContext,
}
Expand description
Input passed to the activate_environment
function.
Fields§
§context: PluginContext
Current tool context.
Trait Implementations§
Source§impl Clone for ActivateEnvironmentInput
impl Clone for ActivateEnvironmentInput
Source§fn clone(&self) -> ActivateEnvironmentInput
fn clone(&self) -> ActivateEnvironmentInput
Returns a duplicate 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 Debug for ActivateEnvironmentInput
impl Debug for ActivateEnvironmentInput
Source§impl Default for ActivateEnvironmentInput
impl Default for ActivateEnvironmentInput
Source§fn default() -> ActivateEnvironmentInput
fn default() -> ActivateEnvironmentInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivateEnvironmentInput
impl<'de> Deserialize<'de> for ActivateEnvironmentInput
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
Source§impl PartialEq for ActivateEnvironmentInput
impl PartialEq for ActivateEnvironmentInput
Source§impl Serialize for ActivateEnvironmentInput
impl Serialize for ActivateEnvironmentInput
impl StructuralPartialEq for ActivateEnvironmentInput
Auto Trait Implementations§
impl Freeze for ActivateEnvironmentInput
impl RefUnwindSafe for ActivateEnvironmentInput
impl Send for ActivateEnvironmentInput
impl Sync for ActivateEnvironmentInput
impl Unpin for ActivateEnvironmentInput
impl UnwindSafe for ActivateEnvironmentInput
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