pub struct FakeInstant {
    pub offset: Duration,
}
Expand description

A fake implementation of Instant for use in testing.

Fields§

§offset: Duration

A FakeInstant is just an offset from some arbitrary epoch.

Implementations§

source§

impl FakeInstant

source

pub const LATEST: FakeInstant = _

The maximum value represented by a fake instant.

source

pub fn saturating_add(self, dur: Duration) -> FakeInstant

Adds to this fake instant, saturating at [LATEST].

Trait Implementations§

source§

impl Add<Duration> for FakeInstant

§

type Output = FakeInstant

The resulting type after applying the + operator.
source§

fn add(self, dur: Duration) -> FakeInstant

Performs the + operation. Read more
source§

impl Clone for FakeInstant

source§

fn clone(&self) -> FakeInstant

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FakeInstant

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for FakeInstant

source§

fn default() -> FakeInstant

Returns the “default value” for a type. Read more
source§

impl From<Duration> for FakeInstant

source§

fn from(offset: Duration) -> FakeInstant

Converts to this type from the input type.
source§

impl Hash for FakeInstant

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl InspectableValue for FakeInstant

source§

fn record<I: Inspector>(&self, _name: &str, _inspector: &mut I)

Records this value into inspector.
source§

impl Instant for FakeInstant

source§

fn duration_since(&self, earlier: FakeInstant) -> Duration

Returns the amount of time elapsed from another instant to this one. Read more
source§

fn saturating_duration_since(&self, earlier: FakeInstant) -> Duration

Returns the amount of time elapsed from another instant to this one, saturating at zero.
source§

fn checked_add(&self, duration: Duration) -> Option<FakeInstant>

Returns Some(t) where t is the time self + duration if t can be represented as Instant (which means it’s inside the bounds of the underlying data structure), None otherwise.
source§

fn checked_sub(&self, duration: Duration) -> Option<FakeInstant>

Returns Some(t) where t is the time self - duration if t can be represented as Instant (which means it’s inside the bounds of the underlying data structure), None otherwise.
source§

fn add(&self, duration: Duration) -> Self

Unwraps the result from checked_add. Read more
source§

impl Ord for FakeInstant

source§

fn cmp(&self, other: &FakeInstant) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for FakeInstant

source§

fn eq(&self, other: &FakeInstant) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for FakeInstant

source§

fn partial_cmp(&self, other: &FakeInstant) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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 · source§

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
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sub<Duration> for FakeInstant

§

type Output = FakeInstant

The resulting type after applying the - operator.
source§

fn sub(self, dur: Duration) -> FakeInstant

Performs the - operation. Read more
source§

impl Sub for FakeInstant

§

type Output = Duration

The resulting type after applying the - operator.
source§

fn sub(self, other: FakeInstant) -> Duration

Performs the - operation. Read more
source§

impl Copy for FakeInstant

source§

impl Eq for FakeInstant

source§

impl StructuralPartialEq for FakeInstant

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<CC, BC, Meta> RecvFrameContext<BC, Meta> for CC
where Meta: ReceivableFrameMeta<CC, BC>,

source§

fn receive_frame<B>(&mut self, bindings_ctx: &mut BC, metadata: Meta, frame: B)
where B: BufferMut + Debug,

Receive a frame. Read more
source§

impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CC
where Meta: SendableFrameMeta<CC, BC>,

source§

fn send_frame<S>( &mut self, bindings_ctx: &mut BC, metadata: Meta, frame: S ) -> Result<(), S>
where S: Serializer, <S as Serializer>::Buffer: BufferMut,

Send a frame. Read more
source§

impl<Meta, BC> SendableFrameMeta<FakeFrameCtx<Meta>, BC> for Meta

source§

fn send_meta<S>( self, core_ctx: &mut FakeFrameCtx<Meta>, _bindings_ctx: &mut BC, frame: S ) -> Result<(), S>
where S: Serializer, <S as Serializer>::Buffer: BufferMut,

Sends this frame metadata to the provided contexts.
source§

impl<Id, CC, BC> TimerHandler<BC, Id> for CC
where Id: HandleableTimer<CC, BC>,

source§

fn handle_timer(&mut self, bindings_ctx: &mut BC, id: Id)

Handle a timer firing.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V