pub enum SequenceValueType {
Double,
String,
Long,
}Expand description
Type of sequence value.
Variants§
Trait Implementations§
Source§impl Clone for SequenceValueType
impl Clone for SequenceValueType
Source§fn clone(&self) -> SequenceValueType
fn clone(&self) -> SequenceValueType
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 SequenceValueType
impl Debug for SequenceValueType
Source§impl Default for SequenceValueType
impl Default for SequenceValueType
Source§fn default() -> SequenceValueType
fn default() -> SequenceValueType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SequenceValueType
impl<'de> Deserialize<'de> for SequenceValueType
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 Serialize for SequenceValueType
impl Serialize for SequenceValueType
impl Copy for SequenceValueType
Auto Trait Implementations§
impl Freeze for SequenceValueType
impl RefUnwindSafe for SequenceValueType
impl Send for SequenceValueType
impl Sync for SequenceValueType
impl Unpin for SequenceValueType
impl UnwindSafe for SequenceValueType
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