pub enum Generated {
AlwaysStored(String),
AlwaysIdentity,
ByDefaultIdentity,
}Expand description
GENERATED column type
Variants§
AlwaysStored(String)
GENERATED ALWAYS AS (expr) STORED
AlwaysIdentity
GENERATED ALWAYS AS IDENTITY
ByDefaultIdentity
GENERATED BY DEFAULT AS IDENTITY
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Generated
impl RefUnwindSafe for Generated
impl Send for Generated
impl Sync for Generated
impl Unpin for Generated
impl UnwindSafe for Generated
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