pub struct InformationalMessage {
pub content: String,
pub level: String,
pub tool_use_id: Option<String>,
pub prevent_continuation: Option<bool>,
pub uuid: Option<String>,
pub session_id: Option<String>,
}Fields§
§content: String§level: String§tool_use_id: Option<String>§prevent_continuation: Option<bool>§uuid: Option<String>§session_id: Option<String>Trait Implementations§
Source§impl Clone for InformationalMessage
impl Clone for InformationalMessage
Source§fn clone(&self) -> InformationalMessage
fn clone(&self) -> InformationalMessage
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 InformationalMessage
impl Debug for InformationalMessage
Source§impl<'de> Deserialize<'de> for InformationalMessage
impl<'de> Deserialize<'de> for InformationalMessage
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 InformationalMessage
impl RefUnwindSafe for InformationalMessage
impl Send for InformationalMessage
impl Sync for InformationalMessage
impl Unpin for InformationalMessage
impl UnsafeUnpin for InformationalMessage
impl UnwindSafe for InformationalMessage
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