pub struct BytesWeightLoader { /* private fields */ }Expand description
Owned in-memory weight loader. The simplest, most portable variant — works on every target including WASM.
Construct via BytesWeightLoader::from_safetensors(bytes) once
model builders integrate. For now the bare struct lets external callers
build their own name → bytes mapping.
Implementations§
Trait Implementations§
Source§impl WeightLoader for BytesWeightLoader
impl WeightLoader for BytesWeightLoader
Auto Trait Implementations§
impl Freeze for BytesWeightLoader
impl RefUnwindSafe for BytesWeightLoader
impl Send for BytesWeightLoader
impl Sync for BytesWeightLoader
impl Unpin for BytesWeightLoader
impl UnsafeUnpin for BytesWeightLoader
impl UnwindSafe for BytesWeightLoader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more