Struct edgedb_protocol::model::Duration
source · [−]pub struct Duration { /* private fields */ }
Expand description
A span of time.
Precision: microseconds.
Implementations
sourceimpl Duration
impl Duration
pub const MIN: LocalDatetime = LocalDatetime { micros: i64::MIN }
pub const MAX: LocalDatetime = LocalDatetime { micros: i64::MAX }
pub fn from_micros(micros: i64) -> Duration
pub fn to_micros(self) -> i64
pub fn is_positive(&self) -> bool
pub fn is_negative(&self) -> bool
pub fn abs_duration(&self) -> Duration
Trait Implementations
sourceimpl Ord for Duration
impl Ord for Duration
sourceimpl PartialOrd<Duration> for Duration
impl PartialOrd<Duration> for Duration
sourcefn partial_cmp(&self, other: &Duration) -> Option<Ordering>
fn partial_cmp(&self, other: &Duration) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Duration
impl Eq for Duration
impl StructuralEq for Duration
impl StructuralPartialEq for Duration
Auto Trait Implementations
impl RefUnwindSafe for Duration
impl Send for Duration
impl Sync for Duration
impl Unpin for Duration
impl UnwindSafe for Duration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> QueryArg for T where
T: ScalarArg,
impl<T> QueryArg for T where
T: ScalarArg,
fn encode_slot(&self, enc: &mut Encoder<'_>) -> Result<(), Error>
fn check_descriptor(
ctx: &DescriptorContext<'_>,
pos: TypePos
) -> Result<(), Error>
sourceimpl<T> Queryable for T where
T: DecodeScalar,
impl<T> Queryable for T where
T: DecodeScalar,
fn decode(_decoder: &Decoder, buf: &[u8]) -> Result<T, DecodeError>
fn check_descriptor(
ctx: &DescriptorContext<'_>,
type_pos: TypePos
) -> Result<(), DescriptorMismatch>
fn decode_optional(
decoder: &Decoder,
buf: Option<&[u8]>
) -> Result<Self, DecodeError>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more