pub struct ViewMutationCapabilities {
pub insertable: bool,
pub updatable: bool,
pub deletable: bool,
}Fields§
§insertable: bool§updatable: bool§deletable: boolImplementations§
Source§impl ViewMutationCapabilities
impl ViewMutationCapabilities
pub const fn fully_updatable(self) -> bool
Trait Implementations§
Source§impl Clone for ViewMutationCapabilities
impl Clone for ViewMutationCapabilities
Source§fn clone(&self) -> ViewMutationCapabilities
fn clone(&self) -> ViewMutationCapabilities
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 ViewMutationCapabilities
Source§impl Debug for ViewMutationCapabilities
impl Debug for ViewMutationCapabilities
Source§impl Default for ViewMutationCapabilities
impl Default for ViewMutationCapabilities
Source§fn default() -> ViewMutationCapabilities
fn default() -> ViewMutationCapabilities
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ViewMutationCapabilities
impl RefUnwindSafe for ViewMutationCapabilities
impl Send for ViewMutationCapabilities
impl Sync for ViewMutationCapabilities
impl Unpin for ViewMutationCapabilities
impl UnsafeUnpin for ViewMutationCapabilities
impl UnwindSafe for ViewMutationCapabilities
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,
impl<T> ErasedDestructor for Twhere
T: 'static,
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