pub enum BLSValue {
Value(String),
ValueWithComment(String, String),
}Expand description
A BLS key value, optionally with an inline comment (text after # on the same line).
Variants§
Value(String)
The argument string for the BLS command.
ValueWithComment(String, String)
The argument string and a trailing comment (e.g. value # comment).
Trait Implementations§
impl StructuralPartialEq for BLSValue
Auto Trait Implementations§
impl Freeze for BLSValue
impl RefUnwindSafe for BLSValue
impl Send for BLSValue
impl Sync for BLSValue
impl Unpin for BLSValue
impl UnsafeUnpin for BLSValue
impl UnwindSafe for BLSValue
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