pub struct CreateAgentBookmarkRequest {
pub message_id: String,
pub kind: AgentBookmarkKind,
pub content: String,
pub session_id: Option<String>,
}Expand description
CreateAgentBookmarkRequest model.
Fields§
§message_id: String§kind: AgentBookmarkKind§content: String§session_id: Option<String>Trait Implementations§
Source§impl Clone for CreateAgentBookmarkRequest
impl Clone for CreateAgentBookmarkRequest
Source§fn clone(&self) -> CreateAgentBookmarkRequest
fn clone(&self) -> CreateAgentBookmarkRequest
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 CreateAgentBookmarkRequest
impl Debug for CreateAgentBookmarkRequest
Source§impl Default for CreateAgentBookmarkRequest
impl Default for CreateAgentBookmarkRequest
Source§fn default() -> CreateAgentBookmarkRequest
fn default() -> CreateAgentBookmarkRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateAgentBookmarkRequest
impl<'de> Deserialize<'de> for CreateAgentBookmarkRequest
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 StructuralPartialEq for CreateAgentBookmarkRequest
Auto Trait Implementations§
impl Freeze for CreateAgentBookmarkRequest
impl RefUnwindSafe for CreateAgentBookmarkRequest
impl Send for CreateAgentBookmarkRequest
impl Sync for CreateAgentBookmarkRequest
impl Unpin for CreateAgentBookmarkRequest
impl UnsafeUnpin for CreateAgentBookmarkRequest
impl UnwindSafe for CreateAgentBookmarkRequest
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