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