pub enum AlignedStreamingElement {
Header(Box<MessageHeader>),
Release(Release),
Resource(Resource),
Party(Party),
EndOfStream,
}Expand description
Aligned streaming element using proper core types
Variants§
Trait Implementations§
Source§impl Clone for AlignedStreamingElement
impl Clone for AlignedStreamingElement
Source§fn clone(&self) -> AlignedStreamingElement
fn clone(&self) -> AlignedStreamingElement
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 moreAuto Trait Implementations§
impl Freeze for AlignedStreamingElement
impl RefUnwindSafe for AlignedStreamingElement
impl Send for AlignedStreamingElement
impl Sync for AlignedStreamingElement
impl Unpin for AlignedStreamingElement
impl UnwindSafe for AlignedStreamingElement
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