pub struct RawClassifier {
pub name: Option<String>,
pub parent_region_id: Option<String>,
pub coordinates_3d: Option<Vec<i32>>,
pub kernel_area_id: Option<String>,
pub class_area_id: Option<String>,
pub fields: Option<Vec<ClassifierField>>,
pub field_area_id: Option<String>,
pub kernel_memory_id: Option<String>,
pub class_memory_id: Option<String>,
pub scan_twin_id: Option<String>,
pub properties: Option<HashMap<String, Value>>,
}Expand description
Raw classifier assembly from the top-level classifiers genome key.
Fields§
§name: Option<String>§parent_region_id: Option<String>§coordinates_3d: Option<Vec<i32>>§kernel_area_id: Option<String>§class_area_id: Option<String>§fields: Option<Vec<ClassifierField>>Current field bindings. Each entry is one Classifier mapping and its twin.
field_area_id: Option<String>Previous singular field record. Loaded as one binding when fields is absent.
kernel_memory_id: Option<String>§class_memory_id: Option<String>§scan_twin_id: Option<String>Previous singular twin record. Paired with field_area_id on load.
properties: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for RawClassifier
impl Clone for RawClassifier
Source§impl Debug for RawClassifier
impl Debug for RawClassifier
Source§impl<'de> Deserialize<'de> for RawClassifier
impl<'de> Deserialize<'de> for RawClassifier
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 RawClassifier
impl RefUnwindSafe for RawClassifier
impl Send for RawClassifier
impl Sync for RawClassifier
impl Unpin for RawClassifier
impl UnsafeUnpin for RawClassifier
impl UnwindSafe for RawClassifier
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more