pub enum SegmentType {
Show 13 variants
F32,
F64,
I8,
I16,
I32,
I64,
I128,
U8,
U16,
U32,
U64,
U128,
String,
}
Expand description
SegmentType is a basic enum for specifying what type a segment’s value is.
Variants§
Trait Implementations§
Source§impl Debug for SegmentType
impl Debug for SegmentType
Source§impl PartialEq for SegmentType
impl PartialEq for SegmentType
impl StructuralPartialEq for SegmentType
Auto Trait Implementations§
impl Freeze for SegmentType
impl RefUnwindSafe for SegmentType
impl Send for SegmentType
impl Sync for SegmentType
impl Unpin for SegmentType
impl UnwindSafe for SegmentType
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