pub struct PredictOutput {
pub prediction: Option<Prediction>,
}
Fields§
§prediction: Option<Prediction>
Trait Implementations§
Source§impl Clone for PredictOutput
impl Clone for PredictOutput
Source§fn clone(&self) -> PredictOutput
fn clone(&self) -> PredictOutput
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 PredictOutput
impl Debug for PredictOutput
Source§impl Default for PredictOutput
impl Default for PredictOutput
Source§fn default() -> PredictOutput
fn default() -> PredictOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PredictOutput
impl<'de> Deserialize<'de> for PredictOutput
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 PartialEq for PredictOutput
impl PartialEq for PredictOutput
impl StructuralPartialEq for PredictOutput
Auto Trait Implementations§
impl Freeze for PredictOutput
impl RefUnwindSafe for PredictOutput
impl Send for PredictOutput
impl Sync for PredictOutput
impl Unpin for PredictOutput
impl UnwindSafe for PredictOutput
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