pub struct MemoryRetryChunk {
pub index: usize,
pub source_ref: String,
pub byte_start: usize,
pub byte_end: usize,
pub token_estimate: usize,
pub retry_command: String,
}Fields§
§index: usize§source_ref: String§byte_start: usize§byte_end: usize§token_estimate: usize§retry_command: StringTrait Implementations§
Source§impl Clone for MemoryRetryChunk
impl Clone for MemoryRetryChunk
Source§fn clone(&self) -> MemoryRetryChunk
fn clone(&self) -> MemoryRetryChunk
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 MemoryRetryChunk
impl Debug for MemoryRetryChunk
Source§impl<'de> Deserialize<'de> for MemoryRetryChunk
impl<'de> Deserialize<'de> for MemoryRetryChunk
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
impl Eq for MemoryRetryChunk
Source§impl PartialEq for MemoryRetryChunk
impl PartialEq for MemoryRetryChunk
Source§fn eq(&self, other: &MemoryRetryChunk) -> bool
fn eq(&self, other: &MemoryRetryChunk) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemoryRetryChunk
impl Serialize for MemoryRetryChunk
impl StructuralPartialEq for MemoryRetryChunk
Auto Trait Implementations§
impl Freeze for MemoryRetryChunk
impl RefUnwindSafe for MemoryRetryChunk
impl Send for MemoryRetryChunk
impl Sync for MemoryRetryChunk
impl Unpin for MemoryRetryChunk
impl UnsafeUnpin for MemoryRetryChunk
impl UnwindSafe for MemoryRetryChunk
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