Struct google_datamigration1::api::SequenceEntity
source · 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 copy 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 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