pub enum AttributeType {
Boolean,
ArrayBoolean,
Binary,
ArrayBinary,
Text,
ArrayText,
Numeric,
ArrayNumeric,
Date,
ArrayDate,
Sai,
ArraySai,
}
Variants
Boolean
ArrayBoolean
Binary
ArrayBinary
Text
ArrayText
Numeric
ArrayNumeric
Date
ArrayDate
Sai
ArraySai
Trait Implementations
sourceimpl Clone for AttributeType
impl Clone for AttributeType
sourcefn clone(&self) -> AttributeType
fn clone(&self) -> AttributeType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AttributeType
impl Debug for AttributeType
sourceimpl<'de> Deserialize<'de> for AttributeType
impl<'de> Deserialize<'de> for AttributeType
sourcefn 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
sourceimpl FromWasmAbi for AttributeType
impl FromWasmAbi for AttributeType
sourceimpl IntoWasmAbi for AttributeType
impl IntoWasmAbi for AttributeType
sourceimpl OptionFromWasmAbi for AttributeType
impl OptionFromWasmAbi for AttributeType
sourceimpl OptionIntoWasmAbi for AttributeType
impl OptionIntoWasmAbi for AttributeType
sourceimpl Serialize for AttributeType
impl Serialize for AttributeType
sourceimpl WasmDescribe for AttributeType
impl WasmDescribe for AttributeType
impl Copy for AttributeType
Auto Trait Implementations
impl RefUnwindSafe for AttributeType
impl Send for AttributeType
impl Sync for AttributeType
impl Unpin for AttributeType
impl UnwindSafe for AttributeType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
sourcefn 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
. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more