pub struct ProjectionItem {
pub event_id: EventId,
pub box_id: BoxId,
pub marker: bool,
pub stale: bool,
pub approximate_tokens: u64,
pub text: String,
}Fields§
§event_id: EventId§box_id: BoxId§marker: bool§stale: bool§approximate_tokens: u64§text: StringTrait Implementations§
Source§impl Clone for ProjectionItem
impl Clone for ProjectionItem
Source§fn clone(&self) -> ProjectionItem
fn clone(&self) -> ProjectionItem
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 ProjectionItem
impl Debug for ProjectionItem
Source§impl<'de> Deserialize<'de> for ProjectionItem
impl<'de> Deserialize<'de> for ProjectionItem
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 ProjectionItem
Source§impl PartialEq for ProjectionItem
impl PartialEq for ProjectionItem
Source§impl Serialize for ProjectionItem
impl Serialize for ProjectionItem
impl StructuralPartialEq for ProjectionItem
Auto Trait Implementations§
impl Freeze for ProjectionItem
impl RefUnwindSafe for ProjectionItem
impl Send for ProjectionItem
impl Sync for ProjectionItem
impl Unpin for ProjectionItem
impl UnsafeUnpin for ProjectionItem
impl UnwindSafe for ProjectionItem
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