pub struct MessagePartInput {
pub part_type: MessagePartType,
pub content: Value,
pub file_citations: Vec<FileCitation>,
pub link_citations: Vec<LinkCitation>,
pub references: Vec<LinkReference>,
}Expand description
The wire / plugin shape of a message part before persistence: a type
plus its typed content. Chat Engine assigns id and number on persist
and returns a full MessagePart.
Fields§
§part_type: MessagePartTypeDiscriminates the content shape.
content: ValueTyped payload; shape determined by part_type. Kept as JSON because the
per-type shapes are plugin-extensible (validated structurally, not here).
file_citations: Vec<FileCitation>Document citations attached to this part (meaningful for text parts).
link_citations: Vec<LinkCitation>Web-page citations attached to this part (meaningful for text parts).
references: Vec<LinkReference>Lightweight URL references attached to this part.
Trait Implementations§
Source§impl Clone for MessagePartInput
impl Clone for MessagePartInput
Source§fn clone(&self) -> MessagePartInput
fn clone(&self) -> MessagePartInput
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 MessagePartInput
impl Debug for MessagePartInput
Source§impl<'de> Deserialize<'de> for MessagePartInput
impl<'de> Deserialize<'de> for MessagePartInput
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 MessagePartInput
impl RefUnwindSafe for MessagePartInput
impl Send for MessagePartInput
impl Sync for MessagePartInput
impl Unpin for MessagePartInput
impl UnsafeUnpin for MessagePartInput
impl UnwindSafe for MessagePartInput
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