#[repr(u8)]pub enum ImmersiveValueKind {
Boolean = 0,
Scalar = 1,
Quantity = 2,
AssetRef = 3,
GeometryRef = 4,
TensorRef = 5,
Instant = 6,
Interval = 7,
}Expand description
The closed set of typed value kinds a QISP function may consume or produce.
Reproduced verbatim from plan §4.2. AssetRef/GeometryRef/TensorRef are
validated, process-local handles resolved from an absolute RDF IRI — never an
opaque numeric pointer in the public term (plan §3.6, §2.2 item 5).
Variants§
Boolean = 0
xsd:boolean — predicate result.
Scalar = 1
A dimensionless numeric literal (xsd:double/xsd:decimal/…).
Quantity = 2
A numeric measurement that MUST carry a unit (QUDT-described).
AssetRef = 3
A validated reference to a content-addressed dense asset.
GeometryRef = 4
A validated reference to a (possibly query-scoped) geometry.
TensorRef = 5
A validated reference to a Tensor10D buffer/section.
Instant = 6
An xsd:dateTime/OWL-Time instant.
Interval = 7
An OWL-Time interval.
Trait Implementations§
Source§impl Clone for ImmersiveValueKind
impl Clone for ImmersiveValueKind
Source§fn clone(&self) -> ImmersiveValueKind
fn clone(&self) -> ImmersiveValueKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ImmersiveValueKind
impl Debug for ImmersiveValueKind
Source§impl Hash for ImmersiveValueKind
impl Hash for ImmersiveValueKind
Source§impl PartialEq for ImmersiveValueKind
impl PartialEq for ImmersiveValueKind
Source§fn eq(&self, other: &ImmersiveValueKind) -> bool
fn eq(&self, other: &ImmersiveValueKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ImmersiveValueKind
impl Eq for ImmersiveValueKind
impl StructuralPartialEq for ImmersiveValueKind
Auto Trait Implementations§
impl Freeze for ImmersiveValueKind
impl RefUnwindSafe for ImmersiveValueKind
impl Send for ImmersiveValueKind
impl Sync for ImmersiveValueKind
impl Unpin for ImmersiveValueKind
impl UnsafeUnpin for ImmersiveValueKind
impl UnwindSafe for ImmersiveValueKind
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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