pub struct Nullable;Expand description
Nullable types.
Implements Nullability to provide:
Nullable::Item<T> = Option<T>Nullable::Collection<T, Buffer> = Validity<T, Buffer>
Trait Implementations§
Source§impl Nullability for Nullable
impl Nullability for Nullable
Source§type Collection<T, Buffer: BufferType> = Validity<T, Buffer>
type Collection<T, Buffer: BufferType> = Validity<T, Buffer>
Nullable collections are wrapped together with a
crate::bitmap::Bitmap.
impl Copy for Nullable
Auto Trait Implementations§
impl Freeze for Nullable
impl RefUnwindSafe for Nullable
impl Send for Nullable
impl Sync for Nullable
impl Unpin for Nullable
impl UnwindSafe for Nullable
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