pub struct StepOutput {
pub title: String,
pub fields: Vec<(String, String)>,
pub is_sensitive: bool,
}Expand description
Output from a bootstrap step that should be displayed in the summary.
Used for secrets like passwords and tokens that are generated during bootstrap and need to be shown to the operator exactly once.
Fields§
§title: StringHuman-readable title for this output.
fields: Vec<(String, String)>Key-value pairs to display.
is_sensitive: boolWhether this output contains sensitive data (passwords, tokens, etc.).
Implementations§
Trait Implementations§
Source§impl Clone for StepOutput
impl Clone for StepOutput
Source§fn clone(&self) -> StepOutput
fn clone(&self) -> StepOutput
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 StepOutput
impl Debug for StepOutput
Auto Trait Implementations§
impl Freeze for StepOutput
impl RefUnwindSafe for StepOutput
impl Send for StepOutput
impl Sync for StepOutput
impl Unpin for StepOutput
impl UnsafeUnpin for StepOutput
impl UnwindSafe for StepOutput
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