pub struct EndpointOptions {
pub description: Option<String>,
pub input_schema: Option<Map<String, Value>>,
pub output_schema: Option<Map<String, Value>>,
pub content_type: Option<String>,
}Fields§
§description: Option<String>§input_schema: Option<Map<String, Value>>§output_schema: Option<Map<String, Value>>§content_type: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for EndpointOptions
impl Clone for EndpointOptions
Source§fn clone(&self) -> EndpointOptions
fn clone(&self) -> EndpointOptions
Returns a duplicate 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 Debug for EndpointOptions
impl Debug for EndpointOptions
Source§impl Default for EndpointOptions
impl Default for EndpointOptions
Source§fn default() -> EndpointOptions
fn default() -> EndpointOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EndpointOptions
impl RefUnwindSafe for EndpointOptions
impl Send for EndpointOptions
impl Sync for EndpointOptions
impl Unpin for EndpointOptions
impl UnsafeUnpin for EndpointOptions
impl UnwindSafe for EndpointOptions
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