pub struct LiftedStructureProperty {
pub choices: Vec<ExpandedName>,
pub description: Option<String>,
pub value: Option<String>,
pub dtype: Option<DType>,
pub validator: Option<Validator>,
pub threshold: Option<f64>,
}Expand description
Lifted schema.
Goals:
- move all entity definitions into a single top-level entity map
- replace nested entity payloads with entity-name references
- preserve structure / relation / classification topology
Fields§
§choices: Vec<ExpandedName>§description: Option<String>§value: Option<String>§dtype: Option<DType>§validator: Option<Validator>§threshold: Option<f64>Trait Implementations§
Source§impl Clone for LiftedStructureProperty
impl Clone for LiftedStructureProperty
Source§fn clone(&self) -> LiftedStructureProperty
fn clone(&self) -> LiftedStructureProperty
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 Debug for LiftedStructureProperty
impl Debug for LiftedStructureProperty
Source§impl PartialEq for LiftedStructureProperty
impl PartialEq for LiftedStructureProperty
Source§impl Serialize for LiftedStructureProperty
impl Serialize for LiftedStructureProperty
impl StructuralPartialEq for LiftedStructureProperty
Auto Trait Implementations§
impl Freeze for LiftedStructureProperty
impl RefUnwindSafe for LiftedStructureProperty
impl Send for LiftedStructureProperty
impl Sync for LiftedStructureProperty
impl Unpin for LiftedStructureProperty
impl UnsafeUnpin for LiftedStructureProperty
impl UnwindSafe for LiftedStructureProperty
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