pub struct Variable<'a> { /* private fields */ }
Expand description
Gitlab job environment variable
To get the underlying value Variable::value
should be used, however this should not be
directly displayed in the log. For displaying to the user the Variable’s
Display
implementation should be used (e.g. via {}
as that will show the value taking the masked
status into account
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Variable<'a>
impl<'a> RefUnwindSafe for Variable<'a>
impl<'a> Send for Variable<'a>
impl<'a> Sync for Variable<'a>
impl<'a> Unpin for Variable<'a>
impl<'a> UnwindSafe for Variable<'a>
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