pub enum SeqPropKind {
Show 25 variants
Start,
Increment,
Minvalue,
Maxvalue,
Cache,
NoCache,
Cycle,
NoCycle,
OwnedBy,
Order,
NoOrder,
Comment,
Sharing,
Keep,
NoKeep,
Scale,
NoScale,
Shard,
NoShard,
Session,
Global,
NoCacheWord,
NoCycleWord,
NoMinvalueWord,
NoMaxvalueWord,
}Expand description
Sequence property tag for ordering
Variants§
Start
Increment
Minvalue
Maxvalue
Cache
NoCache
Cycle
NoCycle
OwnedBy
Order
NoOrder
Comment
Sharing
SHARING=
Keep
KEEP (Oracle)
NoKeep
NOKEEP (Oracle)
Scale
SCALE [EXTEND|NOEXTEND] (Oracle)
NoScale
NOSCALE (Oracle)
Shard
SHARD [EXTEND|NOEXTEND] (Oracle)
NoShard
NOSHARD (Oracle)
Session
SESSION (Oracle)
Global
GLOBAL (Oracle)
NoCacheWord
NOCACHE (single word, Oracle)
NoCycleWord
NOCYCLE (single word, Oracle)
NoMinvalueWord
NOMINVALUE (single word, Oracle)
NoMaxvalueWord
NOMAXVALUE (single word, Oracle)
Trait Implementations§
Source§impl Clone for SeqPropKind
impl Clone for SeqPropKind
Source§fn clone(&self) -> SeqPropKind
fn clone(&self) -> SeqPropKind
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 SeqPropKind
impl Debug for SeqPropKind
Source§impl<'de> Deserialize<'de> for SeqPropKind
impl<'de> Deserialize<'de> for SeqPropKind
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 PartialEq for SeqPropKind
impl PartialEq for SeqPropKind
Source§impl Serialize for SeqPropKind
impl Serialize for SeqPropKind
impl StructuralPartialEq for SeqPropKind
Auto Trait Implementations§
impl Freeze for SeqPropKind
impl RefUnwindSafe for SeqPropKind
impl Send for SeqPropKind
impl Sync for SeqPropKind
impl Unpin for SeqPropKind
impl UnsafeUnpin for SeqPropKind
impl UnwindSafe for SeqPropKind
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