Struct CastOptions
pub struct CastOptions<'a> {
pub safe: bool,
pub format_options: FormatOptions<'a>,
}
Expand description
CastOptions provides a way to override the default cast behaviors
Fields§
§safe: bool
how to handle cast failures, either return NULL (safe=true) or return ERR (safe=false)
format_options: FormatOptions<'a>
Formatting options when casting from temporal types to string
Trait Implementations§
§impl<'a> Clone for CastOptions<'a>
impl<'a> Clone for CastOptions<'a>
§fn clone(&self) -> CastOptions<'a>
fn clone(&self) -> CastOptions<'a>
Returns a copy 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 more§impl<'a> Debug for CastOptions<'a>
impl<'a> Debug for CastOptions<'a>
§impl Default for CastOptions<'_>
impl Default for CastOptions<'_>
§fn default() -> CastOptions<'_>
fn default() -> CastOptions<'_>
Returns the “default value” for a type. Read more
§impl<'a> Hash for CastOptions<'a>
impl<'a> Hash for CastOptions<'a>
§impl<'a> PartialEq for CastOptions<'a>
impl<'a> PartialEq for CastOptions<'a>
impl<'a> Eq for CastOptions<'a>
impl<'a> StructuralPartialEq for CastOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for CastOptions<'a>
impl<'a> RefUnwindSafe for CastOptions<'a>
impl<'a> Send for CastOptions<'a>
impl<'a> Sync for CastOptions<'a>
impl<'a> Unpin for CastOptions<'a>
impl<'a> UnwindSafe for CastOptions<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.