pub struct RecordPatchDto {Show 13 fields
pub bot_id: Option<String>,
pub session_id: Option<String>,
pub tenant: Option<String>,
pub source: Option<String>,
pub state_metadata: Option<StateMetadataDto>,
pub metadata: Option<Value>,
pub relationships: Option<Vec<RelationshipDto>>,
pub expires_at: Option<DateTime<Utc>>,
pub retention_policy: Option<String>,
pub lifecycle_status: Option<String>,
pub retired_at: Option<DateTime<Utc>>,
pub retired_reason: Option<String>,
pub embedding: Option<Vec<f32>>,
}Fields§
§bot_id: Option<String>§session_id: Option<String>§tenant: Option<String>§source: Option<String>§state_metadata: Option<StateMetadataDto>§metadata: Option<Value>§relationships: Option<Vec<RelationshipDto>>§expires_at: Option<DateTime<Utc>>§retention_policy: Option<String>§lifecycle_status: Option<String>§retired_at: Option<DateTime<Utc>>§retired_reason: Option<String>§embedding: Option<Vec<f32>>Implementations§
Trait Implementations§
Source§impl Clone for RecordPatchDto
impl Clone for RecordPatchDto
Source§fn clone(&self) -> RecordPatchDto
fn clone(&self) -> RecordPatchDto
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 RecordPatchDto
impl Debug for RecordPatchDto
Source§impl Default for RecordPatchDto
impl Default for RecordPatchDto
Source§fn default() -> RecordPatchDto
fn default() -> RecordPatchDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordPatchDto
impl<'de> Deserialize<'de> for RecordPatchDto
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
Auto Trait Implementations§
impl Freeze for RecordPatchDto
impl RefUnwindSafe for RecordPatchDto
impl Send for RecordPatchDto
impl Sync for RecordPatchDto
impl Unpin for RecordPatchDto
impl UnsafeUnpin for RecordPatchDto
impl UnwindSafe for RecordPatchDto
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