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§
Source§impl Clone for InfoContextBuilderFieldBottomLevelValue
impl Clone for InfoContextBuilderFieldBottomLevelValue
Source§fn clone(&self) -> InfoContextBuilderFieldBottomLevelValue
fn clone(&self) -> InfoContextBuilderFieldBottomLevelValue
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for InfoContextBuilderFieldBottomLevelValue
impl RefUnwindSafe for InfoContextBuilderFieldBottomLevelValue
impl Send for InfoContextBuilderFieldBottomLevelValue
impl Sync for InfoContextBuilderFieldBottomLevelValue
impl Unpin 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