pub struct ValidationExpectations {
pub schema_id: [u8; 32],
pub generation: u64,
pub role: RoleId,
pub writer: Endpoint,
pub maximum_mapping_size: u64,
}Expand description
Expected identity for quiescent mapping validation.
Fields§
§schema_id: [u8; 32]Exact protocol schema.
generation: u64Exact nonzero connection generation.
role: RoleIdExpected numeric role.
writer: EndpointExpected sole writer endpoint.
maximum_mapping_size: u64Maximum accepted complete mapping size.
Trait Implementations§
Source§impl Clone for ValidationExpectations
impl Clone for ValidationExpectations
Source§fn clone(&self) -> ValidationExpectations
fn clone(&self) -> ValidationExpectations
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 ValidationExpectations
Source§impl Debug for ValidationExpectations
impl Debug for ValidationExpectations
impl Eq for ValidationExpectations
Source§impl PartialEq for ValidationExpectations
impl PartialEq for ValidationExpectations
impl StructuralPartialEq for ValidationExpectations
Auto Trait Implementations§
impl Freeze for ValidationExpectations
impl RefUnwindSafe for ValidationExpectations
impl Send for ValidationExpectations
impl Sync for ValidationExpectations
impl Unpin for ValidationExpectations
impl UnsafeUnpin for ValidationExpectations
impl UnwindSafe for ValidationExpectations
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