pub struct ActorEnvVar {
pub name: String,
pub value: Option<String>,
pub is_secret: Option<bool>,
pub extra: Extra,
}Expand description
An environment variable attached to an Actor version.
Fields§
§name: StringThe environment variable name.
value: Option<String>The value (may be omitted for secret variables in responses).
is_secret: Option<bool>Whether the variable is a secret.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl Clone for ActorEnvVar
impl Clone for ActorEnvVar
Source§fn clone(&self) -> ActorEnvVar
fn clone(&self) -> ActorEnvVar
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 moreSource§impl Debug for ActorEnvVar
impl Debug for ActorEnvVar
Source§impl<'de> Deserialize<'de> for ActorEnvVar
impl<'de> Deserialize<'de> for ActorEnvVar
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 Freeze for ActorEnvVar
impl RefUnwindSafe for ActorEnvVar
impl Send for ActorEnvVar
impl Sync for ActorEnvVar
impl Unpin for ActorEnvVar
impl UnsafeUnpin for ActorEnvVar
impl UnwindSafe for ActorEnvVar
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