pub enum PlaceholderStatus {
Supplied,
DefaultUsed,
Unset,
}Expand description
How a declared VAR port got (or did not get) its value — the per-port status
shown in the report’s PLACEHOLDERS section. Advisory only; never affects the
verdict.
Variants§
Supplied
An external value (CLI/API/data) was supplied.
DefaultUsed
No external value; the port’s DEFAULT was used.
Unset
No external value and no DEFAULT — the port stays UNKNOWN.
Trait Implementations§
Source§impl Clone for PlaceholderStatus
impl Clone for PlaceholderStatus
Source§fn clone(&self) -> PlaceholderStatus
fn clone(&self) -> PlaceholderStatus
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 moreimpl Copy for PlaceholderStatus
Source§impl Debug for PlaceholderStatus
impl Debug for PlaceholderStatus
impl Eq for PlaceholderStatus
Source§impl PartialEq for PlaceholderStatus
impl PartialEq for PlaceholderStatus
Source§fn eq(&self, other: &PlaceholderStatus) -> bool
fn eq(&self, other: &PlaceholderStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaceholderStatus
Auto Trait Implementations§
impl Freeze for PlaceholderStatus
impl RefUnwindSafe for PlaceholderStatus
impl Send for PlaceholderStatus
impl Sync for PlaceholderStatus
impl Unpin for PlaceholderStatus
impl UnsafeUnpin for PlaceholderStatus
impl UnwindSafe for PlaceholderStatus
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