pub struct LoraPayload {
pub prompt_tokens: Vec<u32>,
pub max_new_tokens: usize,
}Expand description
Generic request payload. The scheduler is generic over
payload type via Box<dyn Any>; we keep this concrete here
for simplicity and the common case (text generation).
Fields§
§prompt_tokens: Vec<u32>§max_new_tokens: usizeTrait Implementations§
Source§impl Clone for LoraPayload
impl Clone for LoraPayload
Source§fn clone(&self) -> LoraPayload
fn clone(&self) -> LoraPayload
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 moreAuto Trait Implementations§
impl Freeze for LoraPayload
impl RefUnwindSafe for LoraPayload
impl Send for LoraPayload
impl Sync for LoraPayload
impl Unpin for LoraPayload
impl UnsafeUnpin for LoraPayload
impl UnwindSafe for LoraPayload
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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