#[non_exhaustive]pub struct TrainProcessorVersionResponse {
pub processor_version: String,
/* private fields */
}Expand description
The response for TrainProcessorVersion.
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.processor_version: StringThe resource name of the processor version produced by training.
Implementations§
Source§impl TrainProcessorVersionResponse
impl TrainProcessorVersionResponse
pub fn new() -> Self
Sourcepub fn set_processor_version<T: Into<String>>(self, v: T) -> Self
pub fn set_processor_version<T: Into<String>>(self, v: T) -> Self
Sets the value of processor_version.
Trait Implementations§
Source§impl Clone for TrainProcessorVersionResponse
impl Clone for TrainProcessorVersionResponse
Source§fn clone(&self) -> TrainProcessorVersionResponse
fn clone(&self) -> TrainProcessorVersionResponse
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 Default for TrainProcessorVersionResponse
impl Default for TrainProcessorVersionResponse
Source§fn default() -> TrainProcessorVersionResponse
fn default() -> TrainProcessorVersionResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for TrainProcessorVersionResponse
impl PartialEq for TrainProcessorVersionResponse
Source§fn eq(&self, other: &TrainProcessorVersionResponse) -> bool
fn eq(&self, other: &TrainProcessorVersionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrainProcessorVersionResponse
Auto Trait Implementations§
impl Freeze for TrainProcessorVersionResponse
impl RefUnwindSafe for TrainProcessorVersionResponse
impl Send for TrainProcessorVersionResponse
impl Sync for TrainProcessorVersionResponse
impl Unpin for TrainProcessorVersionResponse
impl UnwindSafe for TrainProcessorVersionResponse
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