pub struct AuthorizedReadStamp {
pub table_id: u64,
pub schema_id: u64,
pub data_generation: u64,
pub security_version: u64,
pub snapshot: Snapshot,
}Expand description
Exact table/security generation used by one successful authorized read.
Fields§
§table_id: u64§schema_id: u64§data_generation: u64§security_version: u64§snapshot: SnapshotTrait Implementations§
Source§impl Clone for AuthorizedReadStamp
impl Clone for AuthorizedReadStamp
Source§fn clone(&self) -> AuthorizedReadStamp
fn clone(&self) -> AuthorizedReadStamp
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 AuthorizedReadStamp
Source§impl Debug for AuthorizedReadStamp
impl Debug for AuthorizedReadStamp
impl Eq for AuthorizedReadStamp
Source§impl PartialEq for AuthorizedReadStamp
impl PartialEq for AuthorizedReadStamp
impl StructuralPartialEq for AuthorizedReadStamp
Auto Trait Implementations§
impl Freeze for AuthorizedReadStamp
impl RefUnwindSafe for AuthorizedReadStamp
impl Send for AuthorizedReadStamp
impl Sync for AuthorizedReadStamp
impl Unpin for AuthorizedReadStamp
impl UnsafeUnpin for AuthorizedReadStamp
impl UnwindSafe for AuthorizedReadStamp
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<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