pub enum WriterEndpoint {
Coordinator,
Receiver,
}Expand description
Endpoint with store authority after commit.
Variants§
Coordinator
The spawning coordinator writes and the receiver reads.
Receiver
The spawned receiver writes and the coordinator reads.
Trait Implementations§
Source§impl Clone for WriterEndpoint
impl Clone for WriterEndpoint
Source§fn clone(&self) -> WriterEndpoint
fn clone(&self) -> WriterEndpoint
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 WriterEndpoint
Source§impl Debug for WriterEndpoint
impl Debug for WriterEndpoint
impl Eq for WriterEndpoint
Source§impl PartialEq for WriterEndpoint
impl PartialEq for WriterEndpoint
impl StructuralPartialEq for WriterEndpoint
Auto Trait Implementations§
impl Freeze for WriterEndpoint
impl RefUnwindSafe for WriterEndpoint
impl Send for WriterEndpoint
impl Sync for WriterEndpoint
impl Unpin for WriterEndpoint
impl UnsafeUnpin for WriterEndpoint
impl UnwindSafe for WriterEndpoint
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