pub enum GeneratedSqlUpdatePolicy {
PublicPrimaryKeyOnly,
PublicBoundedDeterministic,
}Expand description
Generated SQL update endpoint policy selected by icydb.toml.
Variants§
PublicPrimaryKeyOnly
Expose only public-safe primary-key UPDATE through __icydb_update.
PublicBoundedDeterministic
Expose only public-safe bounded deterministic UPDATE through __icydb_update.
Trait Implementations§
Source§impl Clone for GeneratedSqlUpdatePolicy
impl Clone for GeneratedSqlUpdatePolicy
Source§fn clone(&self) -> GeneratedSqlUpdatePolicy
fn clone(&self) -> GeneratedSqlUpdatePolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GeneratedSqlUpdatePolicy
Source§impl Debug for GeneratedSqlUpdatePolicy
impl Debug for GeneratedSqlUpdatePolicy
impl Eq for GeneratedSqlUpdatePolicy
Source§impl PartialEq for GeneratedSqlUpdatePolicy
impl PartialEq for GeneratedSqlUpdatePolicy
Source§fn eq(&self, other: &GeneratedSqlUpdatePolicy) -> bool
fn eq(&self, other: &GeneratedSqlUpdatePolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GeneratedSqlUpdatePolicy
Auto Trait Implementations§
impl Freeze for GeneratedSqlUpdatePolicy
impl RefUnwindSafe for GeneratedSqlUpdatePolicy
impl Send for GeneratedSqlUpdatePolicy
impl Sync for GeneratedSqlUpdatePolicy
impl Unpin for GeneratedSqlUpdatePolicy
impl UnsafeUnpin for GeneratedSqlUpdatePolicy
impl UnwindSafe for GeneratedSqlUpdatePolicy
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