pub struct LoadPersistent<T: RaftDataType, E: RaftError> {
pub start: (u64, u64),
pub end: (u64, u64),
/* private fields */
}Fields§
§start: (u64, u64)§end: (u64, u64)Trait Implementations§
Source§impl<T: RaftDataType, E: RaftError> Message for LoadPersistent<T, E>
impl<T: RaftDataType, E: RaftError> Message for LoadPersistent<T, E>
Source§type Result = Result<LoadedPersistent<T>, E>
type Result = Result<LoadedPersistent<T>, E>
The type of value that this message will resolved with if it is
successful.
Auto Trait Implementations§
impl<T, E> Freeze for LoadPersistent<T, E>
impl<T, E> RefUnwindSafe for LoadPersistent<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for LoadPersistent<T, E>
impl<T, E> Sync for LoadPersistent<T, E>
impl<T, E> Unpin for LoadPersistent<T, E>
impl<T, E> UnsafeUnpin for LoadPersistent<T, E>
impl<T, E> UnwindSafe for LoadPersistent<T, E>where
T: UnwindSafe,
E: UnwindSafe,
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