pub enum InfoContextBuilderFieldBottomLevelValue {
String(String),
I64(i64),
U64(u64),
F64(f64),
}Expand description
The values allowed in the “info” sections and dictionaries.
Variants§
String(String)
A simple string value.
I64(i64)
A numeric value (i64).
U64(u64)
A numeric value (u64).
F64(f64)
A numeric value (f64).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InfoContextBuilderFieldBottomLevelValue
impl RefUnwindSafe for InfoContextBuilderFieldBottomLevelValue
impl Send for InfoContextBuilderFieldBottomLevelValue
impl Sync for InfoContextBuilderFieldBottomLevelValue
impl Unpin for InfoContextBuilderFieldBottomLevelValue
impl UnsafeUnpin for InfoContextBuilderFieldBottomLevelValue
impl UnwindSafe for InfoContextBuilderFieldBottomLevelValue
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