pub struct TypeDecoded {
pub value: Value,
pub nullable: bool,
pub passive: bool,
}Expand description
Internally decoded type info for macros.
Fields§
§value: ValueRepresentative value establishing variant & metadata.
nullable: boolNullability indicator.
passive: boolPassive flag (exclude from INSERT column/value list).
Trait Implementations§
Source§impl Default for TypeDecoded
impl Default for TypeDecoded
Source§fn default() -> TypeDecoded
fn default() -> TypeDecoded
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TypeDecoded
impl RefUnwindSafe for TypeDecoded
impl Send for TypeDecoded
impl Sync for TypeDecoded
impl Unpin for TypeDecoded
impl UnwindSafe for TypeDecoded
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