#[repr(C)]pub struct Retval {
pub ty: DataType,
pub nullable: bool,
}
Expand description
Represents a value returned from a function or method.
Fields§
§ty: DataType
Type of the return value.
nullable: bool
Whether the return value is nullable.
Trait Implementations§
impl StructuralPartialEq for Retval
Auto Trait Implementations§
impl Freeze for Retval
impl RefUnwindSafe for Retval
impl Send for Retval
impl Sync for Retval
impl Unpin for Retval
impl UnwindSafe for Retval
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