#[non_exhaustive]#[repr(u32)]pub enum ggml_opt_optimizer_type {
GGML_OPT_OPTIMIZER_TYPE_ADAMW = 0,
GGML_OPT_OPTIMIZER_TYPE_SGD = 1,
GGML_OPT_OPTIMIZER_TYPE_COUNT = 2,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GGML_OPT_OPTIMIZER_TYPE_ADAMW = 0
GGML_OPT_OPTIMIZER_TYPE_SGD = 1
GGML_OPT_OPTIMIZER_TYPE_COUNT = 2
Trait Implementations§
Source§impl Clone for ggml_opt_optimizer_type
impl Clone for ggml_opt_optimizer_type
Source§fn clone(&self) -> ggml_opt_optimizer_type
fn clone(&self) -> ggml_opt_optimizer_type
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 moreSource§impl Debug for ggml_opt_optimizer_type
impl Debug for ggml_opt_optimizer_type
Source§impl Hash for ggml_opt_optimizer_type
impl Hash for ggml_opt_optimizer_type
Source§impl PartialEq for ggml_opt_optimizer_type
impl PartialEq for ggml_opt_optimizer_type
impl Copy for ggml_opt_optimizer_type
impl Eq for ggml_opt_optimizer_type
impl StructuralPartialEq for ggml_opt_optimizer_type
Auto Trait Implementations§
impl Freeze for ggml_opt_optimizer_type
impl RefUnwindSafe for ggml_opt_optimizer_type
impl Send for ggml_opt_optimizer_type
impl Sync for ggml_opt_optimizer_type
impl Unpin for ggml_opt_optimizer_type
impl UnwindSafe for ggml_opt_optimizer_type
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