pub struct ResolvedValue {
pub value: Value,
pub sensitive: bool,
}Expand description
A resolved value with optional sensitivity metadata
Fields§
§value: ValueThe actual resolved value
sensitive: boolWhether this value is sensitive (should be redacted in logs/exports)
Implementations§
Trait Implementations§
Source§impl Clone for ResolvedValue
impl Clone for ResolvedValue
Source§fn clone(&self) -> ResolvedValue
fn clone(&self) -> ResolvedValue
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 ResolvedValue
impl Debug for ResolvedValue
Source§impl From<&str> for ResolvedValue
impl From<&str> for ResolvedValue
Source§impl From<String> for ResolvedValue
impl From<String> for ResolvedValue
Auto Trait Implementations§
impl Freeze for ResolvedValue
impl RefUnwindSafe for ResolvedValue
impl Send for ResolvedValue
impl Sync for ResolvedValue
impl Unpin for ResolvedValue
impl UnwindSafe for ResolvedValue
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