pub struct SequenceEntity {
pub cache: Option<i64>,
pub custom_features: Option<HashMap<String, Value>>,
pub cycle: Option<bool>,
pub increment: Option<i64>,
pub max_value: Option<Vec<u8>>,
pub min_value: Option<Vec<u8>>,
pub start_value: Option<Vec<u8>>,
}
Expand description
Sequence’s parent is a schema.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cache: Option<i64>
Indicates number of entries to cache / precreate.
custom_features: Option<HashMap<String, Value>>
Custom engine specific features.
cycle: Option<bool>
Indicates whether the sequence value should cycle through.
increment: Option<i64>
Increment value for the sequence.
max_value: Option<Vec<u8>>
Maximum number for the sequence represented as bytes to accommodate large. numbers
min_value: Option<Vec<u8>>
Minimum number for the sequence represented as bytes to accommodate large. numbers
start_value: Option<Vec<u8>>
Start number for the sequence represented as bytes to accommodate large. numbers
Trait Implementations§
Source§impl Clone for SequenceEntity
impl Clone for SequenceEntity
Source§fn clone(&self) -> SequenceEntity
fn clone(&self) -> SequenceEntity
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 SequenceEntity
impl Debug for SequenceEntity
Source§impl Default for SequenceEntity
impl Default for SequenceEntity
Source§fn default() -> SequenceEntity
fn default() -> SequenceEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SequenceEntity
impl<'de> Deserialize<'de> for SequenceEntity
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 SequenceEntity
impl Serialize for SequenceEntity
impl Part for SequenceEntity
Auto Trait Implementations§
impl Freeze for SequenceEntity
impl RefUnwindSafe for SequenceEntity
impl Send for SequenceEntity
impl Sync for SequenceEntity
impl Unpin for SequenceEntity
impl UnwindSafe for SequenceEntity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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