pub struct ResolvedBinding {
pub env_var: String,
pub target_host: String,
pub header: String,
pub value: String,
}Expand description
A single resolved secret binding with its actual value.
Fields§
§env_var: String§target_host: String§header: String§value: StringTrait Implementations§
Source§impl Clone for ResolvedBinding
impl Clone for ResolvedBinding
Source§fn clone(&self) -> ResolvedBinding
fn clone(&self) -> ResolvedBinding
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 ResolvedBinding
impl Debug for ResolvedBinding
Source§impl<'de> Deserialize<'de> for ResolvedBinding
impl<'de> Deserialize<'de> for ResolvedBinding
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 ResolvedBinding
impl RefUnwindSafe for ResolvedBinding
impl Send for ResolvedBinding
impl Sync for ResolvedBinding
impl Unpin for ResolvedBinding
impl UnsafeUnpin for ResolvedBinding
impl UnwindSafe for ResolvedBinding
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