pub struct ModelCandidate {
pub model_id: String,
pub description: String,
pub approx_download_mib: u32,
}Expand description
A candidate embedder model for the grid sweep.
Fields§
§model_id: String§description: String§approx_download_mib: u32Trait Implementations§
Source§impl Clone for ModelCandidate
impl Clone for ModelCandidate
Source§fn clone(&self) -> ModelCandidate
fn clone(&self) -> ModelCandidate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ModelCandidate
impl Debug for ModelCandidate
Source§impl<'de> Deserialize<'de> for ModelCandidate
impl<'de> Deserialize<'de> for ModelCandidate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ModelCandidate
impl RefUnwindSafe for ModelCandidate
impl Send for ModelCandidate
impl Sync for ModelCandidate
impl Unpin for ModelCandidate
impl UnsafeUnpin for ModelCandidate
impl UnwindSafe for ModelCandidate
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