pub enum FieldValue {
Null,
Bool(bool),
Int(i32),
Float(f32),
String(String),
RowRef(Uuid),
}Expand description
The value of a single “cell” (i.e. field) in a table row. If the column corresponds to an attribute morphism then we provide the value of the type; if the column corresponds to a mapping morphism then we provide the uuid of the row.
Variants§
Null
Base type: the empty type.
Bool(bool)
Base type: boolean.
Int(i32)
Base type: integer.
Float(f32)
Base type: float.
String(String)
Base type: string.
RowRef(Uuid)
Mapping type: the uuid of another row.
Trait Implementations§
Source§impl Debug for FieldValue
impl Debug for FieldValue
Source§impl<'de> Deserialize<'de> for FieldValue
impl<'de> Deserialize<'de> for FieldValue
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 From<FieldValue> for JsValuewhere
FieldValue: Serialize,
impl From<FieldValue> for JsValuewhere
FieldValue: Serialize,
Source§fn from(value: FieldValue) -> Self
fn from(value: FieldValue) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
impl FromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for &FieldValuewhere
FieldValue: Serialize,
impl IntoWasmAbi for &FieldValuewhere
FieldValue: Serialize,
Source§impl IntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
impl IntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
Source§impl OptionFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
impl OptionIntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
Source§impl PartialEq for FieldValue
impl PartialEq for FieldValue
Source§fn eq(&self, other: &FieldValue) -> bool
fn eq(&self, other: &FieldValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RefFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
impl RefFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = SelfOwner<FieldValue>
type Anchor = SelfOwner<FieldValue>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl Serialize for FieldValue
impl Serialize for FieldValue
Source§impl Tsify for FieldValue
impl Tsify for FieldValue
const DECL: &'static str = "/**\n * The value of a single \\\"cell\\\" (i.e. field) in a table row. If the column corresponds to an\n * attribute morphism then we provide the value of the type; if the column corresponds to a\n * mapping morphism then we provide the uuid of the row.\n */\nexport type FieldValue = \"Null\" | { Bool: boolean } | { Int: number } | { Float: number } | { String: string } | { RowRef: Uuid };"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl VectorFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for FieldValuewhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
impl VectorIntoWasmAbi for FieldValuewhere
FieldValue: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribeVector for FieldValue
impl WasmDescribeVector for FieldValue
impl StructuralPartialEq for FieldValue
Auto Trait Implementations§
impl Freeze for FieldValue
impl RefUnwindSafe for FieldValue
impl Send for FieldValue
impl Sync for FieldValue
impl Unpin for FieldValue
impl UnsafeUnpin for FieldValue
impl UnwindSafe for FieldValue
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
§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 moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.