pub struct MissionChatRequest {
pub message: String,
pub stream: Option<bool>,
}Expand description
Request body for chatting with a mission’s architect.
Fields§
§message: StringMessage to send to the architect.
stream: Option<bool>Enable streaming (not yet supported).
Trait Implementations§
Source§impl Clone for MissionChatRequest
impl Clone for MissionChatRequest
Source§fn clone(&self) -> MissionChatRequest
fn clone(&self) -> MissionChatRequest
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 MissionChatRequest
impl Debug for MissionChatRequest
Auto Trait Implementations§
impl Freeze for MissionChatRequest
impl RefUnwindSafe for MissionChatRequest
impl Send for MissionChatRequest
impl Sync for MissionChatRequest
impl Unpin for MissionChatRequest
impl UnsafeUnpin for MissionChatRequest
impl UnwindSafe for MissionChatRequest
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