#[non_exhaustive]pub struct ListCustomModelsResponse {
pub models: Vec<CustomTuningModel>,
/* private fields */
}Available on crate feature
search-tuning-service only.Expand description
Response message for SearchTuningService.ListCustomModels method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.models: Vec<CustomTuningModel>List of custom tuning models.
Implementations§
Source§impl ListCustomModelsResponse
impl ListCustomModelsResponse
pub fn new() -> Self
Sourcepub fn set_models<T, V>(self, v: T) -> Self
pub fn set_models<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for ListCustomModelsResponse
impl Clone for ListCustomModelsResponse
Source§fn clone(&self) -> ListCustomModelsResponse
fn clone(&self) -> ListCustomModelsResponse
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 ListCustomModelsResponse
impl Debug for ListCustomModelsResponse
Source§impl Default for ListCustomModelsResponse
impl Default for ListCustomModelsResponse
Source§fn default() -> ListCustomModelsResponse
fn default() -> ListCustomModelsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListCustomModelsResponse
impl Message for ListCustomModelsResponse
Source§impl PartialEq for ListCustomModelsResponse
impl PartialEq for ListCustomModelsResponse
impl StructuralPartialEq for ListCustomModelsResponse
Auto Trait Implementations§
impl Freeze for ListCustomModelsResponse
impl RefUnwindSafe for ListCustomModelsResponse
impl Send for ListCustomModelsResponse
impl Sync for ListCustomModelsResponse
impl Unpin for ListCustomModelsResponse
impl UnwindSafe for ListCustomModelsResponse
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