#[repr(C)]pub struct dpiIntervalYM {
pub years: i32,
pub months: i32,
}Expand description
This structure is used for passing interval (years to months) data to and from
the database in the structure dpiData.
Fields§
§years: i32Specifies the number of years in the interval.
months: i32Specifies the number of months in the interval.
Trait Implementations§
Source§impl Clone for dpiIntervalYM
impl Clone for dpiIntervalYM
Source§fn clone(&self) -> dpiIntervalYM
fn clone(&self) -> dpiIntervalYM
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for dpiIntervalYM
impl Debug for dpiIntervalYM
Source§impl Default for dpiIntervalYM
impl Default for dpiIntervalYM
Source§fn default() -> dpiIntervalYM
fn default() -> dpiIntervalYM
Returns the “default value” for a type. Read more
impl Copy for dpiIntervalYM
Auto Trait Implementations§
impl Freeze for dpiIntervalYM
impl RefUnwindSafe for dpiIntervalYM
impl Send for dpiIntervalYM
impl Sync for dpiIntervalYM
impl Unpin for dpiIntervalYM
impl UnwindSafe for dpiIntervalYM
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