#[repr(C)]pub struct llama_batch {
pub n_tokens: i32,
pub token: *mut llama_token,
pub embd: *mut f32,
pub pos: *mut llama_pos,
pub n_seq_id: *mut i32,
pub seq_id: *mut *mut llama_seq_id,
pub logits: *mut i8,
}
Fields§
§n_tokens: i32
§token: *mut llama_token
§embd: *mut f32
§pos: *mut llama_pos
§n_seq_id: *mut i32
§seq_id: *mut *mut llama_seq_id
§logits: *mut i8
Trait Implementations§
Source§impl Clone for llama_batch
impl Clone for llama_batch
Source§fn clone(&self) -> llama_batch
fn clone(&self) -> llama_batch
Returns a copy 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 llama_batch
impl Debug for llama_batch
Source§impl PartialEq for llama_batch
impl PartialEq for llama_batch
impl Copy for llama_batch
impl StructuralPartialEq for llama_batch
Auto Trait Implementations§
impl Freeze for llama_batch
impl RefUnwindSafe for llama_batch
impl !Send for llama_batch
impl !Sync for llama_batch
impl Unpin for llama_batch
impl UnwindSafe for llama_batch
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