pub struct KvOverride {
pub value: KvOverrideValue,
/* private fields */
}Expand description
A single GGUF metadata key-value override.
These are written into the output file’s metadata when quantizing.
Fields§
§value: KvOverrideValueThe value for this override.
Implementations§
Trait Implementations§
Source§impl Clone for KvOverride
impl Clone for KvOverride
Source§fn clone(&self) -> KvOverride
fn clone(&self) -> KvOverride
Returns a duplicate 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 KvOverride
impl RefUnwindSafe for KvOverride
impl Send for KvOverride
impl Sync for KvOverride
impl Unpin for KvOverride
impl UnsafeUnpin for KvOverride
impl UnwindSafe for KvOverride
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