pub enum GgufValue {
}Expand description
GGUF metadata value types.
Represents all possible value types that can appear in GGUF metadata.
Variants§
U8(u8)
I8(i8)
U16(u16)
I16(i16)
U32(u32)
I32(i32)
F32(f32)
Bool(bool)
String(String)
Array(Vec<GgufValue>)
U64(u64)
I64(i64)
F64(f64)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GgufValue
impl RefUnwindSafe for GgufValue
impl Send for GgufValue
impl Sync for GgufValue
impl Unpin for GgufValue
impl UnwindSafe for GgufValue
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