pub struct ProcessConversationMetadata {
pub data_type: String,
pub identifier: String,
pub content: PurviewTextContent,
pub name: String,
pub is_truncated: bool,
}Expand description
microsoft.graph.processConversationMetadata: one message’s content plus
identity metadata. ContentToProcess::content_entries carries a list of
these, though this port’s ContentProcessor
only ever sends one per processContent call (mirrors Python’s
_map_messages, which builds one whole ProcessContentRequest — with a
single-element content_entries — per Message,
not one batched request for all of them).
Fields§
§data_type: String§identifier: String§content: PurviewTextContent§name: String§is_truncated: boolImplementations§
Trait Implementations§
Source§impl Clone for ProcessConversationMetadata
impl Clone for ProcessConversationMetadata
Source§fn clone(&self) -> ProcessConversationMetadata
fn clone(&self) -> ProcessConversationMetadata
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 ProcessConversationMetadata
impl Debug for ProcessConversationMetadata
Source§impl<'de> Deserialize<'de> for ProcessConversationMetadata
impl<'de> Deserialize<'de> for ProcessConversationMetadata
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 ProcessConversationMetadata
impl RefUnwindSafe for ProcessConversationMetadata
impl Send for ProcessConversationMetadata
impl Sync for ProcessConversationMetadata
impl Unpin for ProcessConversationMetadata
impl UnsafeUnpin for ProcessConversationMetadata
impl UnwindSafe for ProcessConversationMetadata
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