pub enum ModelSearchResponseObject {
List,
}Expand description
ModelSearchResponseObject
JSON schema
{
"type": "string",
"enum": [
"list"
]
}Variants§
List
Trait Implementations§
Source§impl Clone for ModelSearchResponseObject
impl Clone for ModelSearchResponseObject
Source§fn clone(&self) -> ModelSearchResponseObject
fn clone(&self) -> ModelSearchResponseObject
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 ModelSearchResponseObject
Source§impl Debug for ModelSearchResponseObject
impl Debug for ModelSearchResponseObject
Source§impl<'de> Deserialize<'de> for ModelSearchResponseObject
impl<'de> Deserialize<'de> for ModelSearchResponseObject
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 ModelSearchResponseObject
impl Display for ModelSearchResponseObject
impl Eq for ModelSearchResponseObject
Source§impl FromStr for ModelSearchResponseObject
impl FromStr for ModelSearchResponseObject
Source§impl Hash for ModelSearchResponseObject
impl Hash for ModelSearchResponseObject
Source§impl Ord for ModelSearchResponseObject
impl Ord for ModelSearchResponseObject
Source§fn cmp(&self, other: &ModelSearchResponseObject) -> Ordering
fn cmp(&self, other: &ModelSearchResponseObject) -> 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 ModelSearchResponseObject
impl PartialEq for ModelSearchResponseObject
Source§fn eq(&self, other: &ModelSearchResponseObject) -> bool
fn eq(&self, other: &ModelSearchResponseObject) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ModelSearchResponseObject
impl PartialOrd for ModelSearchResponseObject
impl StructuralPartialEq for ModelSearchResponseObject
Source§impl TryFrom<&String> for ModelSearchResponseObject
impl TryFrom<&String> for ModelSearchResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ModelSearchResponseObject
impl TryFrom<&str> for ModelSearchResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ModelSearchResponseObject
impl TryFrom<String> for ModelSearchResponseObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ModelSearchResponseObject
impl RefUnwindSafe for ModelSearchResponseObject
impl Send for ModelSearchResponseObject
impl Sync for ModelSearchResponseObject
impl Unpin for ModelSearchResponseObject
impl UnsafeUnpin for ModelSearchResponseObject
impl UnwindSafe for ModelSearchResponseObject
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