pub struct ClassificationResponse {
pub id: Uuid,
pub class: String,
pub classify_properties: Vec<String>,
pub based_on_properties: Option<Vec<String>>,
pub status: String,
pub meta: ClassificationMetadata,
pub classification_type: String,
pub settings: Option<Value>,
pub filters: Value,
}Expand description
Response received from the classification
Fields§
§id: Uuid§class: String§classify_properties: Vec<String>§based_on_properties: Option<Vec<String>>§status: String§meta: ClassificationMetadata§classification_type: String§settings: Option<Value>§filters: ValueTrait Implementations§
Source§impl Debug for ClassificationResponse
impl Debug for ClassificationResponse
Source§impl<'de> Deserialize<'de> for ClassificationResponse
impl<'de> Deserialize<'de> for ClassificationResponse
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
Auto Trait Implementations§
impl Freeze for ClassificationResponse
impl RefUnwindSafe for ClassificationResponse
impl Send for ClassificationResponse
impl Sync for ClassificationResponse
impl Unpin for ClassificationResponse
impl UnwindSafe for ClassificationResponse
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