pub struct ResolvedModel {
pub data: Vec<u8>,
pub source: ModelSource,
pub model: Option<Model>,
}Expand description
Resolution result containing model data and metadata
Fields§
§data: Vec<u8>The model data (binary)
source: ModelSourceSource of the model
model: Option<Model>Model metadata (if from registry)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedModel
impl RefUnwindSafe for ResolvedModel
impl Send for ResolvedModel
impl Sync for ResolvedModel
impl Unpin for ResolvedModel
impl UnsafeUnpin for ResolvedModel
impl UnwindSafe for ResolvedModel
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