pub struct LatestVolumeResult {
pub volume: Option<VolumeIndex>,
pub calls: usize,
}Expand description
Represents the most recent volume index and the number of network calls made to find it.
Fields§
§volume: Option<VolumeIndex>The most recent volume index, if found.
calls: usizeThe number of network calls made to find the most recent volume.
Trait Implementations§
Source§impl Clone for LatestVolumeResult
impl Clone for LatestVolumeResult
Source§fn clone(&self) -> LatestVolumeResult
fn clone(&self) -> LatestVolumeResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LatestVolumeResult
impl Debug for LatestVolumeResult
Source§impl Hash for LatestVolumeResult
impl Hash for LatestVolumeResult
Source§impl PartialEq for LatestVolumeResult
impl PartialEq for LatestVolumeResult
Source§fn eq(&self, other: &LatestVolumeResult) -> bool
fn eq(&self, other: &LatestVolumeResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LatestVolumeResult
impl StructuralPartialEq for LatestVolumeResult
Auto Trait Implementations§
impl Freeze for LatestVolumeResult
impl RefUnwindSafe for LatestVolumeResult
impl Send for LatestVolumeResult
impl Sync for LatestVolumeResult
impl Unpin for LatestVolumeResult
impl UnsafeUnpin for LatestVolumeResult
impl UnwindSafe for LatestVolumeResult
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.