pub enum ResponseObject {
Response,
}Expand description
The object type of this resource - always set to response.
JSON schema
{
"description": "The object type of this resource - always set to `response`.\n",
"type": "string",
"enum": [
"response"
],
"x-stainless-const": true
}Variants§
Response
Trait Implementations§
Source§impl Clone for ResponseObject
impl Clone for ResponseObject
Source§fn clone(&self) -> ResponseObject
fn clone(&self) -> ResponseObject
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 moreimpl Copy for ResponseObject
Source§impl Debug for ResponseObject
impl Debug for ResponseObject
Source§impl<'de> Deserialize<'de> for ResponseObject
impl<'de> Deserialize<'de> for ResponseObject
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 Display for ResponseObject
impl Display for ResponseObject
impl Eq for ResponseObject
Source§impl FromStr for ResponseObject
impl FromStr for ResponseObject
Source§impl Hash for ResponseObject
impl Hash for ResponseObject
Source§impl Ord for ResponseObject
impl Ord for ResponseObject
Source§fn cmp(&self, other: &ResponseObject) -> Ordering
fn cmp(&self, other: &ResponseObject) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResponseObject
impl PartialEq for ResponseObject
Source§impl PartialOrd for ResponseObject
impl PartialOrd for ResponseObject
Source§impl Serialize for ResponseObject
impl Serialize for ResponseObject
impl StructuralPartialEq for ResponseObject
Source§impl TryFrom<&String> for ResponseObject
impl TryFrom<&String> for ResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ResponseObject
impl TryFrom<&str> for ResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ResponseObject
impl TryFrom<String> for ResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ResponseObject
impl RefUnwindSafe for ResponseObject
impl Send for ResponseObject
impl Sync for ResponseObject
impl Unpin for ResponseObject
impl UnsafeUnpin for ResponseObject
impl UnwindSafe for ResponseObject
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