#[non_exhaustive]pub struct DirectRawPredictResponse {
pub output: Bytes,
/* private fields */
}Expand description
Response message for PredictionService.DirectRawPredict.
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.output: BytesThe prediction output.
Implementations§
Trait Implementations§
Source§impl Clone for DirectRawPredictResponse
impl Clone for DirectRawPredictResponse
Source§fn clone(&self) -> DirectRawPredictResponse
fn clone(&self) -> DirectRawPredictResponse
Returns a copy 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 DirectRawPredictResponse
impl Debug for DirectRawPredictResponse
Source§impl Default for DirectRawPredictResponse
impl Default for DirectRawPredictResponse
Source§fn default() -> DirectRawPredictResponse
fn default() -> DirectRawPredictResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DirectRawPredictResponsewhere
DirectRawPredictResponse: Default,
impl<'de> Deserialize<'de> for DirectRawPredictResponsewhere
DirectRawPredictResponse: Default,
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 Message for DirectRawPredictResponse
impl Message for DirectRawPredictResponse
Source§impl PartialEq for DirectRawPredictResponse
impl PartialEq for DirectRawPredictResponse
Source§impl Serialize for DirectRawPredictResponse
impl Serialize for DirectRawPredictResponse
impl StructuralPartialEq for DirectRawPredictResponse
Auto Trait Implementations§
impl !Freeze for DirectRawPredictResponse
impl RefUnwindSafe for DirectRawPredictResponse
impl Send for DirectRawPredictResponse
impl Sync for DirectRawPredictResponse
impl Unpin for DirectRawPredictResponse
impl UnwindSafe for DirectRawPredictResponse
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