pub struct CurrentTimestamp {
pub precision: Option<u32>,
pub sysdate: bool,
}Expand description
CURRENT_TIMESTAMP
Fields§
§precision: Option<u32>§sysdate: boolIf true, generate SYSDATE instead of CURRENT_TIMESTAMP (Oracle-specific)
Trait Implementations§
Source§impl Clone for CurrentTimestamp
impl Clone for CurrentTimestamp
Source§fn clone(&self) -> CurrentTimestamp
fn clone(&self) -> CurrentTimestamp
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 CurrentTimestamp
impl Debug for CurrentTimestamp
Source§impl<'de> Deserialize<'de> for CurrentTimestamp
impl<'de> Deserialize<'de> for CurrentTimestamp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CurrentTimestamp
impl PartialEq for CurrentTimestamp
Source§impl Serialize for CurrentTimestamp
impl Serialize for CurrentTimestamp
impl StructuralPartialEq for CurrentTimestamp
Auto Trait Implementations§
impl Freeze for CurrentTimestamp
impl RefUnwindSafe for CurrentTimestamp
impl Send for CurrentTimestamp
impl Sync for CurrentTimestamp
impl Unpin for CurrentTimestamp
impl UnwindSafe for CurrentTimestamp
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