pub enum BLSValue {
Value(String),
ValueWithComment(String, String),
}
Expand description
BLSValue generalizes a value that may have an inline comment
Variants§
Value(String)
The string represent the argument string for the BLS command
ValueWithComment(String, String)
Holds string that represents the BLS command argument as well as a comment string at the end of the line
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 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