pub struct VirtualProviderVersion {
pub fingerprint_hi: u64,
pub fingerprint_lo: u64,
}Expand description
Provider-supplied version token for immutable or versioned virtual data.
Fields§
§fingerprint_hi: u64§fingerprint_lo: u64Trait Implementations§
Source§impl Clone for VirtualProviderVersion
impl Clone for VirtualProviderVersion
Source§fn clone(&self) -> VirtualProviderVersion
fn clone(&self) -> VirtualProviderVersion
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 moreimpl Copy for VirtualProviderVersion
Source§impl Debug for VirtualProviderVersion
impl Debug for VirtualProviderVersion
impl Eq for VirtualProviderVersion
Source§impl Hash for VirtualProviderVersion
impl Hash for VirtualProviderVersion
Source§impl PartialEq for VirtualProviderVersion
impl PartialEq for VirtualProviderVersion
Source§fn eq(&self, other: &VirtualProviderVersion) -> bool
fn eq(&self, other: &VirtualProviderVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VirtualProviderVersion
Auto Trait Implementations§
impl Freeze for VirtualProviderVersion
impl RefUnwindSafe for VirtualProviderVersion
impl Send for VirtualProviderVersion
impl Sync for VirtualProviderVersion
impl Unpin for VirtualProviderVersion
impl UnsafeUnpin for VirtualProviderVersion
impl UnwindSafe for VirtualProviderVersion
Blanket Implementations§
impl<T> Allocation for T
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§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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more