pub struct SemanticProviderInput {
pub source_ref: String,
pub memory_kind: String,
pub label: String,
pub text: String,
pub semantic_text: String,
pub imported_from: String,
pub session_id: Option<String>,
pub observed_at_unix: Option<i64>,
}Fields§
§source_ref: String§memory_kind: String§label: String§text: String§semantic_text: String§imported_from: String§session_id: Option<String>§observed_at_unix: Option<i64>Trait Implementations§
Source§impl Clone for SemanticProviderInput
impl Clone for SemanticProviderInput
Source§fn clone(&self) -> SemanticProviderInput
fn clone(&self) -> SemanticProviderInput
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 SemanticProviderInput
impl Debug for SemanticProviderInput
impl Eq for SemanticProviderInput
Source§impl PartialEq for SemanticProviderInput
impl PartialEq for SemanticProviderInput
Source§fn eq(&self, other: &SemanticProviderInput) -> bool
fn eq(&self, other: &SemanticProviderInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SemanticProviderInput
Auto Trait Implementations§
impl Freeze for SemanticProviderInput
impl RefUnwindSafe for SemanticProviderInput
impl Send for SemanticProviderInput
impl Sync for SemanticProviderInput
impl Unpin for SemanticProviderInput
impl UnsafeUnpin for SemanticProviderInput
impl UnwindSafe for SemanticProviderInput
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