pub struct GatewayEnvVar {
pub name: String,
pub required: bool,
pub secret: bool,
}Fields§
§name: String§required: bool§secret: boolTrait Implementations§
Source§impl Clone for GatewayEnvVar
impl Clone for GatewayEnvVar
Source§fn clone(&self) -> GatewayEnvVar
fn clone(&self) -> GatewayEnvVar
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 GatewayEnvVar
impl Debug for GatewayEnvVar
Source§impl PartialEq for GatewayEnvVar
impl PartialEq for GatewayEnvVar
Source§fn eq(&self, other: &GatewayEnvVar) -> bool
fn eq(&self, other: &GatewayEnvVar) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GatewayEnvVar
impl StructuralPartialEq for GatewayEnvVar
Auto Trait Implementations§
impl Freeze for GatewayEnvVar
impl RefUnwindSafe for GatewayEnvVar
impl Send for GatewayEnvVar
impl Sync for GatewayEnvVar
impl Unpin for GatewayEnvVar
impl UnsafeUnpin for GatewayEnvVar
impl UnwindSafe for GatewayEnvVar
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.