pub struct VariableSubstitution {
pub value: String,
pub success: bool,
pub errors: Vec<String>,
}
Expand description
Environment variable substitution result
Fields§
§value: String
The substituted value
success: bool
Whether substitution was successful
errors: Vec<String>
Any errors that occurred during substitution
Trait Implementations§
Source§impl Clone for VariableSubstitution
impl Clone for VariableSubstitution
Source§fn clone(&self) -> VariableSubstitution
fn clone(&self) -> VariableSubstitution
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 moreAuto Trait Implementations§
impl Freeze for VariableSubstitution
impl RefUnwindSafe for VariableSubstitution
impl Send for VariableSubstitution
impl Sync for VariableSubstitution
impl Unpin for VariableSubstitution
impl UnwindSafe for VariableSubstitution
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