pub enum ReceiveRepresentation {
ExternalShare,
Materialized,
}Expand description
Observable receive behavior for a receiver endpoint.
Variants§
Receiver returns an externally shared buffer reference.
Materialized
Receiver materializes into an owned buffer.
Trait Implementations§
Source§impl Clone for ReceiveRepresentation
impl Clone for ReceiveRepresentation
Source§fn clone(&self) -> ReceiveRepresentation
fn clone(&self) -> ReceiveRepresentation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReceiveRepresentation
impl Debug for ReceiveRepresentation
Source§impl PartialEq for ReceiveRepresentation
impl PartialEq for ReceiveRepresentation
impl Copy for ReceiveRepresentation
impl Eq for ReceiveRepresentation
impl StructuralPartialEq for ReceiveRepresentation
Auto Trait Implementations§
impl Freeze for ReceiveRepresentation
impl RefUnwindSafe for ReceiveRepresentation
impl Send for ReceiveRepresentation
impl Sync for ReceiveRepresentation
impl Unpin for ReceiveRepresentation
impl UnsafeUnpin for ReceiveRepresentation
impl UnwindSafe for ReceiveRepresentation
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