pub enum BlockControllerCreateRequest {
Conversation(CreateConversationBlockDto),
ToolCall(CreateToolCallBlockDto),
Workflow(CreateWorkflowBlockDto),
}Variants§
Conversation(CreateConversationBlockDto)
ToolCall(CreateToolCallBlockDto)
Workflow(CreateWorkflowBlockDto)
Trait Implementations§
Source§impl Clone for BlockControllerCreateRequest
impl Clone for BlockControllerCreateRequest
Source§fn clone(&self) -> BlockControllerCreateRequest
fn clone(&self) -> BlockControllerCreateRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for BlockControllerCreateRequest
impl ComposeSchema for BlockControllerCreateRequest
Source§impl Debug for BlockControllerCreateRequest
impl Debug for BlockControllerCreateRequest
Source§impl<'de> Deserialize<'de> for BlockControllerCreateRequest
impl<'de> Deserialize<'de> for BlockControllerCreateRequest
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
Source§impl PartialEq for BlockControllerCreateRequest
impl PartialEq for BlockControllerCreateRequest
Source§fn eq(&self, other: &BlockControllerCreateRequest) -> bool
fn eq(&self, other: &BlockControllerCreateRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlockControllerCreateRequest
Auto Trait Implementations§
impl Freeze for BlockControllerCreateRequest
impl RefUnwindSafe for BlockControllerCreateRequest
impl Send for BlockControllerCreateRequest
impl Sync for BlockControllerCreateRequest
impl Unpin for BlockControllerCreateRequest
impl UnwindSafe for BlockControllerCreateRequest
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